Nise-Anti-AK Problem
Posted zl-nirvana
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nise-Anti-AK Problem相关的知识,希望对你有一定的参考价值。
这题就是求使f(x)最大的ai,f(x)=∑(i|x) i是从0到x的,|是按位或,推算了一下,好像是x越大f(x)就越大,所以只要把输入的最大值打印出来就ok了
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 5 const int maxn = 1005; 6 int a[maxn]; 7 8 int main() 9 { 10 int T, n; 11 scanf("%d", &T); 12 while (T--) 13 { 14 scanf("%d", &n); 15 for (int i = 0; i < n; i++) 16 scanf("%d", &a[i]); 17 sort(a, a + n); 18 printf("%d\\n", a[n-1]); 19 } 20 return 0; 21 }
以上是关于Nise-Anti-AK Problem的主要内容,如果未能解决你的问题,请参考以下文章
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
片段中的Android ListView - 获取新数据后刷新表的问题