标签:需要 动态数组 gcd 前缀 个数 count 技巧 code vector
vector 开动态数组:vector<vector<int> > A(n,vector<int>(m))
求一个数二进制中 1 的个数:__builtin_popcount(unsigned int x)
求一个数二进制中前缀 0 的个数:__builtin_clz(unsigned int x)
求一个数二进制中后缀 0 的个数:__builtin_ctz(unsigned int x)
求 x 与 y 的 gcd:__gcd(x,y)
(需要头文件 algorithm)
标签:需要 动态数组 gcd 前缀 个数 count 技巧 code vector
原文地址:https://www.cnblogs.com/CADCADCAD/p/11351363.html