QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#361644 | #6303. Inversion | Zxc200611# | WA | 52ms | 11964kb | C++14 | 1.4kb | 2024-03-23 12:22:11 | 2024-03-23 12:22:11 |
Judging History
answer
/*
一个 1...n 的排列。每次可以询问一个区间内的逆序对数奇偶性。
在 40000 次询问内还原排列。
1<=n<=2000。
考虑每次插一个数。二分其排名。
需要比较两个数 p[i],p[j] 的大小,i<j,1...j-1 大小顺序已知。
询问一次 [i,j] 可以知道 i...j 内有多少个数小于 p[j]。然后对 [i+1,j] 做同样的事。
2n log n。
*/
#include<bits/stdc++.h>
using namespace std;
int n;
int p[2100],pos[2100];
bool cinv[2100][2100];
bool know[2100][2100];
bool countInverse(int l,int r)
{
if(l>=r)
return 0;
if(know[l][r])
return cinv[l][r];
cout<<"? "<<l<<" "<<r<<endl;
int res;
cin>>res;
know[l][r]=1;
return cinv[l][r]=res;
}
bool compare(int j,int i)
{
return !(countInverse(j,i)^countInverse(j+1,i)^countInverse(j,i-1)^countInverse(j+1,i-1));
}
void addNumber(int i,int x)
{
for(int j=1;j<i;j++)
p[j]+=(p[j]>=x),pos[p[j]]=j;
p[i]=x,pos[x]=i;
for(int j=i-1;j>=1;j--)
{
know[j][i]=1;
cinv[j][i]=cinv[j][i-1]^cinv[j+1][i]^cinv[j+1][i+1]^(p[j]>p[i]);
}
}
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
know[i][j]=0;
}
}
for(int i=1;i<=n;i++)
{
int l=1,r=i-1,ans=0; // count <=p[i]
while(l<=r)
{
int mid=(l+r)>>1;
if(compare(pos[mid],i))
ans=mid,l=mid+1;
else
r=mid-1;
}
addNumber(i,ans+1);
}
cout<<"! ";
for(int i=1;i<=n;i++)
cout<<p[i]<<" ";
cout<<endl;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5668kb
input:
3 0 0 1
output:
? 1 2 ? 1 3 ? 2 3 ! 2 3 1
result:
ok OK, guesses=3
Test #2:
score: -100
Wrong Answer
time: 52ms
memory: 11964kb
input:
1993 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 1 1 0 0 0 0 0 1 1 1 0 1 0 0 1 1 1 0 1 1 1 0 0 0 1 1 1 1 0 1 0 0 1 0 1 1 0 0 0 1 0 1 0 1 1 0 0 0 1 1 0 0 1 0...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 1 5 ? 2 6 ? 3 6 ? 5 6 ? 1 6 ? 1 7 ? 2 7 ? 3 7 ? 4 7 ? 5 7 ? 2 8 ? 3 8 ? 7 8 ? 4 8 ? 5 8 ? 2 9 ? 3 9 ? 6 9 ? 7 9 ? 5 9 ? 2 10 ? 3 10 ? 5 10 ? 6 10 ? 9 10 ? 1 11 ? 2 11 ? 7 11 ? 8 11 ? 3 11 ? 11 12 ? 7 12 ? 8 12 ? 2 12 ? 3 12 ? 4 12 ? 11 13 ? 12 13 ? 3 13 ? ...
result:
wrong answer Wa.