hdu 5269 ZYB loves Xor I
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 538 Accepted Submission(s): 259
Problem Description
Memphis loves xor very musch.Now he gets an array A.The length of A is n.Now he wants to know the sum of all (lowbit(Ai xor Aj)) (i,j∈[1,n])
We define that lowbit(x)=2k,k is the smallest integer satisfied ((x and 2k)>0)
Specially,lowbit(0)=0
Because the ans may be too big.You just need to output ans mod 998244353
We define that lowbit(x)=2k,k is the smallest integer satisfied ((x and 2k)>0)
Specially,lowbit(0)=0
Because the ans may be too big.You just need to output ans mod 998244353
Input
Multiple test cases, the first line contains an integer T(no more than 10), indicating the number of cases. Each test case contains two lines
The first line has an integer n
The second line has n integers A1,A2....An
n∈[1,5∗104],Ai∈[0,229]
The first line has an integer n
The second line has n integers A1,A2....An
n∈[1,5∗104],Ai∈[0,229]
Output
For each case, the output should occupies exactly one line. The output format is Case #x: ans, here x is the data number begins at 1.
Sample Input
2
5
4 0 2 7 0
5
2 6 5 4 0
Sample Output
Case #1: 36
Case #2: 40
/*time 62ms by atrp */ #include <cstdio> #include <algorithm> #include <cstring> #include <map> using namespace std; typedef long long ll; const int N = 50005; int a[N]; int n, forc; ll ans; int cmp( int a, int b) { return (a & (1 << forc)) < (b & (1 << forc)); } int calc( int low, int high) //寻找排序后a[low。。high - 1]中二进制第forc位不同的分界点,区间为[low,high); { int i; for (i = low; i < high; ++i) if ((a[i] & (1 << forc)) ^ (a[i + 1] & (1 << forc))) break ; if (i == high) return i; else return i + 1; //注意这里的边界处理 } void solve( int low, int high) { sort(a + low, a + high, cmp); int m = calc(low, high); // printf("[%d] - [%d]\n", m, high); int mi = *min_element(a + low, a + high); int mx = *max_element(a + low, a + high); if (mi == mx) return ; //当[low,high)中的元素相等时,无需继续递归 forc++; solve(low, m); solve(m, high); forc--; ans += ((m - low) % 998244353) * ((high - m) % 998244353) * (1 << forc) ; } int main() { int t, ca = 1; scanf ( "%d" , &t); while (t --) { scanf ( "%d" , &n); for ( int i = 0; i < n; ++i) scanf ( "%d" , &a[i]); forc = 0; ans = 0; solve(0, n); printf ( "Case #%d: %lld\n" , ca++,(ans << 1) % 998244353); } } |
Source
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧