QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#518915 | #9176. Non-Interactive Nim | Decade | WA | 175ms | 3884kb | C++17 | 2.5kb | 2024-08-14 14:10:55 | 2024-08-14 14:11:01 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
typedef long long ull;
typedef unsigned long long uull;
typedef pair<int, int> PII;
typedef pair<int,PII> PIII;
typedef __int128 lll;
mt19937 rnd1(random_device{}());
mt19937_64 rnd2(random_device{}());
// uniform_int_depthtribution<int> deptht1(0,2e18); //定义deptht1为0——100的随机整数
// uniform_real_depthtribution<double> deptht2(-10,10); //定义deptht2为-10——10的随机浮点数
//#define mp make_pair
//fflush(stdout);
inline void print(__int128 x){//输出模板
if(x<0){
putchar('-');
x=-x;
}
if(x>9) print(x/10);
putchar(x%10+'0');
}
inline int read()
{
int X = 0;
bool flag = 1;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-')
flag = 0;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
X = (X << 1) + (X << 3) + ch - '0';
ch = getchar();
}
if (flag)
return X;
return ~(X - 1);
}
const ull mod = 998244353,INF = 2e18;
ull qpow(ull a, ull b)
{
ull res = 1;
a %= mod;
assert(b >= 0);
for (; b; b >>= 1)
{
if (b & 1)
res = res * a % mod;
a = a * a % mod;
}
return res;
}
inline int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }
inline int lcm(int a, int b) { return a / gcd(a, b) * b; }
const int N = 100010,M = 200100;
int a[N];
int cnt[110];
vector<int> p[110];
void solve()
{
int n;
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
for(int j=0;j<=59;j++) cnt[j] = 0,p[j].clear();
int c = 0;
for(int i=1;i<=n;i++)
for(int j=0;j<=59;j++)
if((a[i]>>j)&1)
{
cnt[j]++;
if(cnt[j]>2)
{
cout<<-1<<'\n';
return;
}
p[j].push_back(i);
}
for(int i=0;i<=59;i++)
if(cnt[i]&1)
{
cout<<-1<<'\n';
return;
}
else if(cnt[i]) c++;
cout<<c<<'\n';
for(int i=0;i<=59;i++)
if(cnt[i])
{
cout<<p[i][0]<<' '<<(1ll<<i)<<'\n';
}
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 1;
cin>>t;
while (t--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3576kb
input:
2 4 4 2 7 1 4 1 1 1 1
output:
3 3 1 2 2 1 4 -1
result:
ok OK 1 yes 1 no (2 test cases)
Test #2:
score: 0
Accepted
time: 20ms
memory: 3612kb
input:
50000 2 3 3 2 2 2 2 3 3 2 2 2 2 3 3 2 3 3 2 1 1 2 1 1 2 1 1 2 2 2 2 2 2 2 3 3 2 2 2 2 1 1 2 3 3 2 1 1 2 1 1 2 1 1 2 3 3 2 1 1 2 1 1 2 3 3 2 2 2 2 3 3 2 3 3 2 2 2 2 1 1 2 3 3 2 2 2 2 2 2 2 3 3 2 3 3 2 1 1 2 1 1 2 1 1 2 3 3 2 3 3 2 1 1 2 1 1 2 3 3 2 2 2 2 2 2 2 2 2 2 1 1 2 1 1 2 2 2 2 2 2 2 1 1 2 3 3 ...
output:
2 1 1 1 2 1 1 2 2 1 1 1 2 1 1 2 2 1 1 1 2 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 2 1 1 1 2 1 1 2 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 2 1 1 1 2 1 1 2 2 1 1 1 2 2 1 1 1 2 1 1 2 1 1 1 2 1 1 1 2 1 1 2 1 1 2 2 1 1 1 2 2 1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1 2 2 1 1 1 2 1 1 1 1 1 1 2 1 1 ...
result:
ok OK 50000 yes 0 no (50000 test cases)
Test #3:
score: 0
Accepted
time: 175ms
memory: 3576kb
input:
50000 2 89846347117873058 89846347117873058 2 416235892302498917 416235892302498917 2 332154513003612985 332154513003612985 2 43960216631774959 43960216631774959 2 353215896487285554 353215896487285554 2 38296945667390613 38296945667390613 2 209150071115726640 209150071115726640 2 48610805835417777 ...
output:
30 1 2 1 32 1 128 1 256 1 512 1 1024 1 16384 1 32768 1 65536 1 131072 1 1048576 1 4194304 1 67108864 1 268435456 1 1073741824 1 2147483648 1 8589934592 1 17179869184 1 274877906944 1 549755813888 1 2199023255552 1 17592186044416 1 35184372088832 1 281474976710656 1 562949953421312 1 1125899906842624...
result:
ok OK 50000 yes 0 no (50000 test cases)
Test #4:
score: 0
Accepted
time: 16ms
memory: 3584kb
input:
33333 3 1 3 2 3 2 3 1 2 1 1 3 1 2 3 3 3 2 1 3 1 2 3 2 1 1 2 3 3 2 3 3 3 1 2 3 3 1 3 2 3 3 2 1 2 2 2 3 3 2 1 2 3 3 3 3 1 2 2 1 1 3 1 2 3 3 1 3 2 3 2 3 1 3 1 3 2 3 1 2 3 3 1 2 3 3 3 1 2 3 2 3 1 3 1 3 2 3 1 3 2 2 1 1 2 3 3 3 3 2 1 2 3 3 3 1 3 2 3 2 3 1 3 2 3 1 3 1 3 2 3 2 3 1 3 2 3 1 3 3 2 1 2 1 1 3 2 ...
output:
2 1 1 2 2 2 2 1 1 2 1 1 1 2 1 1 2 2 2 1 1 1 2 2 1 1 2 2 1 1 1 2 1 1 1 2 2 1 1 1 2 2 1 1 2 2 2 1 1 2 2 2 1 1 1 2 1 1 2 2 1 1 1 2 2 1 1 1 2 2 1 1 1 2 1 1 1 2 1 1 2 2 2 1 1 2 2 2 2 1 1 2 2 1 1 2 2 2 1 1 2 2 2 1 1 2 2 2 1 1 1 2 2 2 1 1 2 2 1 1 2 2 2 1 1 2 2 1 1 1 2 1 1 1 2 2 1 1 1 2 2 1 1 1 2 2 1 1 2 2 ...
result:
ok OK 33333 yes 0 no (33333 test cases)
Test #5:
score: 0
Accepted
time: 14ms
memory: 3884kb
input:
33333 3 1 7 6 3 5 1 4 3 7 3 4 3 6 4 2 3 5 3 6 3 5 3 6 3 7 4 3 3 1 2 3 3 4 3 7 3 2 4 6 3 1 6 7 3 4 5 1 3 1 5 4 2 4 4 2 6 6 3 4 7 3 3 4 2 6 3 1 3 2 3 3 4 7 2 2 2 3 7 3 4 3 2 7 5 3 7 6 1 3 7 3 4 3 4 3 7 3 2 4 6 3 7 1 6 3 3 1 2 3 5 3 6 3 2 6 4 3 6 1 7 3 1 2 3 3 2 1 3 3 5 2 7 3 2 4 6 3 6 3 5 3 5 7 2 2 5 ...
output:
3 1 1 2 2 2 4 2 1 1 1 4 3 1 1 1 2 1 4 2 1 2 1 4 3 1 1 2 2 1 4 3 1 1 2 2 1 4 3 1 1 1 2 1 4 2 1 1 2 2 3 2 1 2 2 1 4 2 1 2 2 4 3 1 1 2 2 2 4 2 2 1 1 4 2 1 1 2 4 1 1 4 2 1 2 1 4 3 2 1 2 2 1 4 2 2 2 1 4 2 1 1 2 2 3 1 1 1 2 2 4 1 1 2 3 1 1 1 2 1 4 3 2 1 1 2 2 4 3 1 1 1 2 1 4 3 1 1 1 2 1 4 3 2 1 2 2 1 4 2 ...
result:
ok OK 33333 yes 0 no (33333 test cases)
Test #6:
score: 0
Accepted
time: 21ms
memory: 3808kb
input:
33333 3 1 2 3 3 3 6 5 3 2 6 4 3 7 5 2 3 6 1 7 2 14 14 3 4 1 5 3 9 4 13 3 3 12 15 2 10 10 3 1 14 15 3 2 1 3 3 12 11 7 3 14 3 13 3 5 14 11 3 10 2 8 3 4 10 14 3 9 5 12 3 4 5 1 3 14 3 13 2 14 14 3 8 3 11 3 5 6 3 3 5 4 1 2 6 6 3 10 1 11 3 12 10 6 3 9 10 3 3 11 8 3 3 6 14 8 3 6 5 3 3 9 13 4 3 15 12 3 3 11...
output:
2 1 1 2 2 3 1 1 1 2 2 4 2 1 2 2 4 3 1 1 1 2 1 4 3 2 1 1 2 1 4 3 1 2 1 4 1 8 2 2 1 1 4 3 1 1 2 4 1 8 4 1 1 1 2 2 4 2 8 2 1 2 1 8 4 1 1 2 2 2 4 2 8 2 2 1 1 2 4 2 1 2 2 1 4 1 8 4 2 1 1 2 1 4 1 8 4 1 1 2 2 1 4 2 8 2 1 2 1 8 3 2 2 1 4 2 8 3 1 1 2 4 1 8 2 2 1 1 4 4 2 1 1 2 1 4 1 8 3 1 2 1 4 1 8 3 2 1 2 2 ...
result:
ok OK 33333 yes 0 no (33333 test cases)
Test #7:
score: 0
Accepted
time: 24ms
memory: 3872kb
input:
33333 3 18 23 5 3 25 19 10 3 17 9 24 3 11 5 14 3 28 10 22 3 23 2 21 3 17 13 28 3 1 24 25 2 29 29 3 8 7 15 3 21 9 28 3 2 28 30 3 31 6 25 3 13 30 19 3 22 6 16 3 1 22 23 3 7 2 5 3 1 15 14 3 27 24 3 3 2 18 16 3 3 20 23 3 21 30 11 3 28 26 6 3 26 22 12 3 4 21 17 3 12 23 27 3 2 27 25 3 16 1 17 3 3 19 16 3 ...
output:
4 2 1 1 2 2 4 1 16 4 1 1 2 2 1 8 1 16 3 1 1 2 8 1 16 4 1 1 1 2 2 4 1 8 4 2 2 1 4 1 8 1 16 4 1 1 1 2 1 4 1 16 4 1 1 2 4 2 8 1 16 3 1 1 2 8 2 16 4 1 1 1 4 1 8 1 16 4 2 1 2 2 2 4 1 8 4 1 1 1 4 2 8 1 16 4 1 2 2 4 2 8 2 16 5 1 1 1 2 1 4 1 8 1 16 5 1 1 2 2 1 4 1 8 2 16 3 1 2 1 4 1 16 4 1 1 2 2 2 4 2 16 3 ...
result:
ok OK 33333 yes 0 no (33333 test cases)
Test #8:
score: 0
Accepted
time: 164ms
memory: 3580kb
input:
33333 3 75939333264163319 70286858371473560 140878147161481583 3 279663769504813403 468263081333160675 404772552081894328 3 89355125865512126 7804515715434520 82980318957417638 3 295120670202585395 334743633442856703 53274775335976908 3 166213426772161350 398865696845176129 560570643782577671 3 9560...
output:
48 1 1 1 2 1 4 2 8 1 16 1 32 1 64 1 128 1 256 2 8192 1 16384 1 32768 2 262144 2 524288 1 1048576 1 2097152 1 8388608 1 16777216 1 33554432 1 67108864 2 134217728 1 268435456 2 536870912 1 1073741824 1 2147483648 1 4294967296 1 8589934592 2 17179869184 1 34359738368 1 137438953472 1 274877906944 2 54...
result:
ok OK 33333 yes 0 no (33333 test cases)
Test #9:
score: -100
Wrong Answer
time: 11ms
memory: 3640kb
input:
25000 4 1 1 3 3 4 2 2 1 1 4 3 2 2 3 4 1 3 1 3 3 2 1 3 3 3 2 1 4 3 2 2 3 4 2 3 2 3 3 3 2 1 4 3 3 1 1 3 2 1 3 3 3 1 2 4 3 2 3 2 4 2 2 1 1 4 1 3 1 3 4 2 1 1 2 4 1 3 1 3 3 2 3 1 4 3 3 1 1 4 2 3 2 3 3 3 2 1 4 3 3 1 1 3 2 3 1 3 1 2 3 3 1 2 3 3 3 1 2 4 1 3 1 3 4 3 1 1 3 4 2 2 3 3 3 3 2 1 4 2 2 2 2 3 1 3 2 ...
output:
-1 2 3 1 1 2 -1 -1 2 2 1 1 2 2 1 1 1 2 -1 -1 2 1 1 1 2 -1 2 2 1 1 2 2 1 1 1 2 -1 2 3 1 1 2 -1 2 2 1 1 2 -1 2 2 1 1 2 -1 -1 2 1 1 1 2 -1 2 2 1 1 2 2 1 1 2 2 2 1 1 2 2 2 1 1 1 2 -1 -1 -1 2 1 1 1 2 -1 2 1 1 2 2 -1 -1 2 1 1 2 2 2 1 1 2 2 -1 -1 2 1 1 2 2 2 2 1 1 2 -1 2 3 1 1 2 2 1 1 2 2 -1 -1 -1 -1 2 3 1...
result:
wrong answer judge has answer but participant doesn't (test case 1)