IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 算法与数据结构-位运算 -> 正文阅读

[数据结构与算法]算法与数据结构-位运算

Raising Modulo Numbers

求a^b对m取模

思路 : 快速幂

Raising Modulo Numbers - POJ 1995 - Virtual Judge (vjudge.net)

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;

public class Main {

  static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
  static StreamTokenizer in = new StreamTokenizer(reader);

  static String next() throws IOException {
    in.nextToken();
    return in.sval;
  }

  /**
   * 获取数字
   */
  static int nextInt() throws IOException {
    in.nextToken();
    return (int) in.nval;
  }

  public static void main(String[] args) throws IOException {
    numbers();
  }

  public static void numbers() throws IOException {
    int n = nextInt();
    for (int i = 0; i < n; i++) {
      int m = nextInt();
      int num = nextInt();
      int ans = 0;
      for (int j = 0; j < num; j++) {
        int a = nextInt();
        int b = nextInt();
        int solved = solved(a, b, m);
        ans = (ans + solved) % m;
      }
      System.out.println(ans);
    }
  }

  public static int solved(long a, long b, int m) {
    if (a == 0 || a == 1) {
      return (int) a;
    }
    if (b == 0) {
      return 1;
    }
    long ans = 1;
    while (b > 0) {
      if ((b & 1) == 1) {
        ans = ans * a % m;
      }
      a = a * a % m;
      b >>= 1;
    }
    return (int) ans;
  }


}

类似题 : 剑指 Offer 16. 数值的整数次方 - 力扣(LeetCode)

  public double myPow(double x, int n) {
    if (x == 0 || x == 1) {
      return x;
    }
    if (n == 0) {
      return 1;
    }
    double ans = 1.0;
    long b = Math.abs((long) n);
    while (b > 0) {
      if ((b & 1) == 1) {
        ans = ans * x;
      }
      x *= x;
      b >>= 1;
    }
    return n > 0 ? ans : 1 / ans;
  }

最短Hamilton路径

91. 最短Hamilton路径 - AcWing题库

暴力枚举时间复杂度O(n*n!)

思路:二进制状态压缩 O(n^2 * 2^n)

img

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;

public class Main {

  static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
  static StreamTokenizer in = new StreamTokenizer(reader);

  static String next() throws IOException {
    in.nextToken();
    return in.sval;
  }

  /**
   * 获取数字
   */
  static int nextInt() throws IOException {
    in.nextToken();
    return (int) in.nval;
  }

  public static void main(String[] args) throws IOException {
    hamilton();
  }

  static int N, M;
  static int f[][];

  static void hamilton() throws IOException {
    N = nextInt();
    M = 1 << N;
    f = new int[M][N];
    for (int i = 0; i < f.length; i++) {
      for (int i1 = 0; i1 < f[i].length; i1++) {
        f[i][i1] = Integer.MAX_VALUE>>1; //防止溢出
      }
    }
    f[1][0] = 0;
    int[][] w = new int[N][N];
    for (int i = 0; i < N; i++) {
      for (int j = 0; j < N; j++) {
        w[i][j] = nextInt();
      }
    }
    for (int i = 1; i < M; i++) {
      for (int j = 0; j < N; j++) {
        if (((i >> j) & 1) == 1) {
          for (int k = 0; k < N; k++) {
            if ((((i ^ (1 << j)) >> k) & 1) == 1) {
              f[i][j] = Math.min(f[i][j], f[i ^ (1 << j)][k] + w[k][j]);
            }
          }
        }
      }
    }
    System.out.println(f[M - 1][N - 1]);
  }
}

起床困难综合症

[P2114 NOI2014] 起床困难综合症 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

package Uva.basic;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;

public class Main {

  static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
  static StreamTokenizer in = new StreamTokenizer(reader);

  static String next() throws IOException {
    in.nextToken();
    return in.sval;
  }

  /**
   * 获取数字
   */
  static int nextInt() throws IOException {
    in.nextToken();
    return (int) in.nval;
  }

  public static void main(String[] args) throws IOException {
    getUp();
  }

  static Node[] nodes;

  public static void getUp() throws IOException {
    int n = nextInt();
    int m = nextInt();
    nodes = new Node[n];
    for (int i = 0; i < n; i++) {
      String s = next();
      int val = nextInt();
      int type = s.equals("AND") ? 1 : (s.equals("OR") ? 2 : 3);
      nodes[i] = new Node(type, val);
    }
    int ans = 0, val = 0;
    for (int i = 30; i >= 0; i--) {
      int res0 = cal(i, 0);
      int res1 = cal(i, 1);
      if (val + (1 << i) <= m && res0 < res1) {
        ans += 1 << i;
        val += 1 << i;
      } else {
        ans += res0 << i;
      }
    }
    System.out.println(ans);
  }

  public static int cal(int bit, int now) {
    for (int i = 0; i < nodes.length; i++) {
      int x = nodes[i].val >> bit & 1;
      if (nodes[i].type == 1) {
        now &= x;
      } else if (nodes[i].type == 2) {
        now |= x;
      } else {
        now ^= x;
      }
    }
    return now;
  }

  static class Node {

    int type;
    int val;

    public Node(int type, int val) {
      this.type = type;
      this.val = val;
    }
  }

 
}

成对变换

通过计算可以发现,对于非负整数n:
当n为偶数时,n xor 1等于n + 1。
当n为奇数时,n xor 1等于n 一1。
因此,“0与1” “2与3” “4与5”…关于 xor 1运算构成“成对变换”。

这一性质经常用于图论邻接表中边集的存储。在具有无向边(双向边)的图中把一对正反方向的边分别存储在邻接表数组的第n 与n+1位置(其中n为偶数),就可以通过xor 1的运算获得与当前边(x,y)反向的边(y,x)的存储位置。

lowbit运算

lowbit(x)是x的二进制表达式中最低位的1所对应的值

lowbit(n) = n & (~n +1) =n & (-n)

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-07-04 23:13:18  更:2022-07-04 23:14:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 23:24:37-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码