QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#740640 | #9432. Permutation | -xcxxx- | WA | 1ms | 3720kb | C++14 | 3.2kb | 2024-11-13 10:53:15 | 2024-11-13 10:53:16 |
Judging History
answer
#include<bits/stdc++.h>
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
using namespace std;
int rd() {int x=0,f=1;char c=getchar();while(!isdigit(c))f=(c=='-'?-1:f),c=getchar();while(isdigit(c))x=x*10+c-'0',c=getchar();return x*f;}
const int N=1005;
int n,p[N],ans[N];
int out[N];
#ifdef ONLINE_JUDGE
void init() {
}
int query(vector<int> ask) {
rep(i,0,n-1) out[p[i+1]]=ask[i];
printf("0 ");rep(i,1,n)printf("%d ",out[i]);
puts(""),fflush(stdout);
return rd();
}
#endif
#ifndef ONLINE_JUDGE
int a[N];
void init() {
rep(i,1,n) a[i]=i;
random_shuffle(a+1,a+1+n);
printf("ANS: ");rep(i,1,n) printf("%d ",a[i]);puts("");
}
int query(vector<int> ask) {
rep(i,0,n-1) out[p[i+1]]=ask[i];
printf("0 ");rep(i,1,n)printf("%d ",out[i]);
puts(""),fflush(stdout);
int cnt=0;
rep(i,1,n) cnt+=out[i]==a[i];
printf("%d\n",cnt);
return cnt;
}
#endif
void solve(int l,int r,vector<int> now,int out=-1) {
if(l==r) {
ans[p[l]]=now[0];
return;
}
int mid=(l+r)>>1;
if(~out) {
vector<int> L,R;
for(int x:now) {
vector<int> ask;
rep(i,1,l-1) ask.push_back(x);
rep(i,l,mid) ask.push_back(x);
rep(i,mid+1,r) ask.push_back(out);
rep(i,r+1,n) ask.push_back(x);
if(query(ask)) L.push_back(x);
else R.push_back(x);
}
solve(l, mid ,L,out);
solve(mid+1,r,R,out);
}
else {
vector<int> L,R,unknown;
unknown.push_back(now.back());
now.pop_back();
for(int x:now) {
vector<int> ask;
if(!L.empty()) {
rep(i,l,mid) ask.push_back(x);
rep(i,mid+1,r) ask.push_back(L.front());
if(query(ask)) L.push_back(x);
else R.push_back(x);
}
else if(!R.empty()) {
rep(i,l,mid) ask.push_back(R.front());
rep(i,mid+1,r) ask.push_back(x);
if(query(ask)) R.push_back(x);
else L.push_back(x);
}
else {
rep(i,l,mid) ask.push_back(x);
rep(i,mid+1,r) ask.push_back(unknown.front());
int val=query(ask);
if(val==0) {
R.push_back(x);
for(int y:unknown) L.push_back(y);
unknown.clear();
}
if(val==2) {
L.push_back(x);
for(int y:unknown) R.push_back(y);
unknown.clear();
}
if(val==1) unknown.push_back(x);
}
}
if(L.size()<mid-l+1) for(int x:unknown) L.push_back(x);
if(R.size()<r-mid) for(int x:unknown) R.push_back(x);
solve(l, mid ,L,R.front());
solve(mid+1,r,R,L.front());
}
}
signed main() {
n=rd();
init();
rep(i,1,n) p[i]=i;
// random_shuffle(p+1,p+1+n);
vector<int> now;
rep(i,1,n) now.push_back(i);
solve(1,n,now);
rep(i,1,n) printf("%d ",ans[i]);
return 0;
}
//g++ -fsanitize=address,undefined -Wall -std=c++14 -O2 -o K K.cpp
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3720kb
input:
5 1 2 1 1 0 1 1 1 0 0 1
output:
0 1 1 1 5 5 0 2 2 2 5 5 0 3 3 3 2 2 0 4 4 4 2 2 0 2 2 5 2 2 0 3 3 5 3 3 0 4 4 5 4 4 0 3 5 3 3 3 0 4 5 4 4 4 0 5 5 5 5 2 0 1 1 1 1 2 3 4 2 1 5
result:
wrong answer format Unexpected end of file - int32 expected