QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#108330 | #5024. 【模板】双端队列 | sunzh | 25 | 99ms | 4048kb | C++14 | 1.2kb | 2023-05-24 16:49:01 | 2023-05-24 16:49:03 |
Judging History
answer
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/hash_policy.hpp>
#include<bits/stdc++.h>
#define PII pair<int,int>
#define mp make_pair
#define fi first
#define se second
#define pb push_back
using ll = long long;
using namespace std;
using namespace __gnu_pbds;
inline int read(){
int x=0,f=1;char c=getchar();while(!isdigit(c)){if(c=='-')f=-1;c=getchar();}
while(isdigit(c)){x=(x<<3)+(x<<1)+(c^48);c=getchar();}
return f==-1?~x+1:x;
}
int T;
int n;
int a[50010],b[50010];
bool check(int l,int r){
int len=1;
while(b[l+1]==b[l]&&l<r){
++len;++l;
}
while(r>l&&b[l]==b[r]){
++len,--r;
}
if(len&1) return 0;
for(int i=l+1;i<=r;++i){
int j=i;
while(b[j+1]==b[i]) ++j;
if(j-i+1%2) return 0;
i=j;
}
return 1;
}
int main(){
T=read();
while(T--){
n=read();
int su=0;
for(int i=1;i<=n;++i){
a[i]=read();su^=a[i];
}
if(su==0){
printf("Draw\n");continue ;
}
if(n%2==0){
printf("First\n");continue ;
}
int hbt=__lg(su);
int cnt=0;
for(int i=1;i<=n;++i) if(a[i]>>hbt&1){
++cnt;b[i]=1;
}
else b[i]=0;
if(cnt%4==3){
printf("Second\n");continue ;
}
printf((check(2,n)||check(1,n-1))?"First\n":"Second\n");
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 3428kb
input:
40 15 1042186166 1065050038 1052442342 117744385 1044381358 996146407 947617159 1031691934 27328777 130294601 1065311743 1065082111 12845136 941620871 1042177446 15 1068465534 15766217 69219008 95461385 1048542590 1051709438 1048575351 1072652151 978275647 1044381687 999247358 1062194999 1054829887 ...
output:
Second Second Second Second Second Second Second Draw Draw Draw Draw Second Second Second Second Second Second Draw Second Second Second Draw Second Draw Draw Second Second Second Draw Second Second Second Second Second Second Second Second Second Second Draw
result:
wrong answer 4th words differ - expected: 'First', found: 'Second'
Subtask #2:
score: 0
Wrong Answer
Test #2:
score: 0
Wrong Answer
time: 4ms
memory: 3564kb
input:
40 987 1073733087 9437225 570431533 1031755263 1031755251 579873284 571521061 536872960 546353705 43000364 535780827 1065313790 536834043 41953824 503270871 1040175099 8426021 537960961 1054732 545292837 34648585 34603052 546314244 537965060 9439748 41953292 43037189 9447949 536864767 1073698294 503...
output:
Second Second Second Second Second Second Second Second Second Second Draw Second Second Second Second Second Second Second Draw Draw Draw Draw Second Second Second Second Second Second Second Second Draw Second Second Second Second Draw Second Second Second Second
result:
wrong answer 3rd words differ - expected: 'First', found: 'Second'
Subtask #3:
score: 25
Accepted
Test #4:
score: 25
Accepted
time: 68ms
memory: 4048kb
input:
40 49999 30704571 23631198 10459697 452884 909025 3745220 5633170 29257098 24428644 21991837 21100897 21249665 18667093 13809790 21220831 32750672 29531337 31709216 17139349 4444339 787544 14509794 3855820 201034 13281440 26541636 31476242 10318360 20485824 26793325 8264891 22349828 20554718 7556006...
output:
Second First Second Second First Second Second First Second Second Second First First First Second Second Second Second First First Second Second Second Second First First Second First Second First First First First Second First Second First First First First
result:
ok 40 tokens
Test #5:
score: 0
Accepted
time: 61ms
memory: 3940kb
input:
40 50000 32128601 23900639 9898059 10642201 2516432 19994626 8905808 23168114 27093651 32766595 7092623 14455293 32272254 11330578 25018676 9383756 16276912 15628227 6205425 11630483 19952395 19133325 22760569 7587885 30335157 13910732 11179526 4266775 18282905 14622912 11401940 33485172 9826535 292...
output:
First Second First First Second Second Second Second Second First Second First First First First Second First Second First First First Second First First First Second First First Second Second Second First First First First First First Second First Second
result:
ok 40 tokens
Subtask #4:
score: 0
Wrong Answer
Test #6:
score: 0
Wrong Answer
time: 99ms
memory: 3744kb
input:
40 49035 1073176430 531291499 1005508607 675350672 368768 867368831 139504132 1321089 134482448 464248170 1068169195 68946580 469491567 738764816 742459920 535197167 531887598 672172545 609558673 608209040 335282031 532674543 72878741 610117777 138447508 398155759 71608464 672172165 402325355 609845...
output:
Second Second Second Second Second Second Draw Second Second Draw Second Second Second Second Second Second Second Second Second Draw Second Second Draw Second Second Second Second Second Second Second Second Draw Second Second Second Second Second Second Second Second
result:
wrong answer 1st words differ - expected: 'First', found: 'Second'