QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#847451 | #9081. Stone Game | Ashley | AC ✓ | 70ms | 6056kb | C++17 | 1.5kb | 2025-01-07 23:27:13 | 2025-01-07 23:27:21 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX=1e6+5;
int T;
int n;
int a[MAX];
int st[MAX];
int main()
{
int cas=0;
for(cin>>T;T--;)
{
scanf("%d",&n);
ll sum=0;
for(int i=1;i<=n;i++)scanf("%d",a+i),sum+=a[i];
printf("Case %d: ",++cas);
if(n==1)
{
puts(sum%2?"Alice":"Bob");
continue;
}
int top=0;
for(int i=2;i<n;i++)
{
if(a[i-1]>a[i] && a[i]<a[i+1])st[top++]=i;
}
// cout<<"top = "<<top<<endl;
// cout<<"st";for(int i=0;i<top;i++)cout<<" "<<st[i];cout<<endl;
a[0]=-1;
for(int i=1;i<n && a[i]<a[i+1];i++)a[i]=a[i-1]+1;
a[n+1]=-1;
for(int i=n;i>1 && a[i]<a[i-1];i--)a[i]=a[i+1]+1;
for(int i=0;i<top;i++)
{
a[st[i]]=0;
for(int j=st[i]+1;j<n && a[j]<a[j+1];j++)a[j]=a[j-1]+1;
for(int j=st[i]-1;j>1 && a[j]<a[j-1];j--)a[j]=a[j+1]+1;
}
// cout<<"a: ";for(int i=1;i<=n;i++)cout<<" "<<a[i];cout<<endl;
for(int i=1;i<=n;i++)
{
if(i==1 && a[1]>a[2])a[1]=a[2]+1;
else if(i==n && a[n]>a[n-1])a[n]=a[n-1]+1;
else if(a[i-1]<a[i] && a[i]>a[i+1])
a[i]=max(a[i-1],a[i+1])+1;
}
// cout<<"a: ";for(int i=1;i<=n;i++)cout<<" "<<a[i];cout<<endl;
for(int i=1;i<=n;i++)sum-=a[i];
puts(sum%2?"Alice":"Bob");
}
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 5936kb
input:
2 2 1 3 3 1 3 1
output:
Case 1: Alice Case 2: Bob
result:
ok 6 tokens
Test #2:
score: 0
Accepted
time: 70ms
memory: 6056kb
input:
100 6 81465064 282461216 901271977 883929195 417402583 905199019 81 446515977 713783802 722110667 630976811 649946782 587154674 902746167 323984832 993767142 448219489 147260653 965726731 285094827 38139235 232364598 865618962 179012832 170557710 51496918 387305162 297154531 40736146 181070561 68158...
output:
Case 1: Alice Case 2: Alice Case 3: Alice Case 4: Alice Case 5: Alice Case 6: Alice Case 7: Bob Case 8: Alice Case 9: Alice Case 10: Alice Case 11: Bob Case 12: Bob Case 13: Bob Case 14: Alice Case 15: Bob Case 16: Bob Case 17: Alice Case 18: Alice Case 19: Alice Case 20: Bob Case 21: Alice Case 22:...
result:
ok 300 tokens
Extra Test:
score: 0
Extra Test Passed