QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#297313#6303. Inversion552HzWA 77ms3628kbC++142.3kb2024-01-04 10:25:052024-01-04 10:25:06

Judging History

你现在查看的是最新测评结果

  • [2024-01-04 10:25:06]
  • 评测
  • 测评结果:WA
  • 用时:77ms
  • 内存:3628kb
  • [2024-01-04 10:25:05]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef double db;
const int N=2010;
const ll mod=998244353;
//const ll mod=1e9+7;
#define rep(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=n;i>=a;i--)
#define vi vector <int>
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define sz(a) ((int) (a).size())
#define me(f, x) memset(f, x, sizeof(f))
#define uint unsigned int
#define ull unsigned long long 
#define i128 __int128
#define pb emplace_back
#define pii pair<int,int>
#define debug(x) std::cout<<x<<endl
//#define endl '\n'
#define mt19937 rng(chrono::steady_clock::now().time_since_epoch().count())
ll powmod(ll a,ll b) {ll res=1;a%=mod; assert(b>=0); for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
template<typename type>
inline void read(type &x)
{
    x=0;bool flag(0);char ch=getchar();
    while(!isdigit(ch)) flag=ch=='-',ch=getchar();
    while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
    flag?x=-x:0;
}
template<typename type>
inline void write(type x,bool mode=1)//0为空格,1为换行
{
    x<0?x=-x,putchar('-'):0;static short Stack[50],top(0);
    do Stack[++top]=x%10,x/=10; while(x);
    while(top) putchar(Stack[top--]|48);
    mode?putchar('\n'):putchar(' ');
}
//head~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//begin~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//end~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ll a[N],n;
bool query(int l,int r){
	int cnt=0,x;
	if(l>r){
		swap(l,r);
	}
	if(r-l<=1){
		cout<<"? "<<l<<" "<<r<<endl;
		cout.flush();
		cin>>x;
		return x%mod;	
	}
	cout<<"? "<<l<<" "<<r<<endl;
	cout.flush();
	cin>>x;
	cnt+=x;
	cout<<"? "<<l+1<<" "<<r<<endl;
	cout.flush();
	cin>>x;
	cnt-=x;
	cout<<"? "<<l<<" "<<r-1<<endl;
	cout.flush();
	cin>>x;
	cnt-=x;		
	cout<<"? "<<l+1<<" "<<r-1<<endl;
	cout.flush();
	cin>>x;
	cnt+=x;
	return (cnt%2+2)%2;
}
void solve(){
	cin>>n;
	//vector<int> q;
	for(int i=1;i<=n;i++){
		a[i]=i;
	}
	sort(a+1,a+1+n,query);
	cout<<"! ";
	for(int i=1;i<=n;i++){
		for(int j=1;j<=n;j++){
			if(a[j]==i){
				cout<<j<<" ";
			}
		}
	}
	cout<<endl;
}


int main() 
{
	std::ios::sync_with_stdio(false);
	cin.tie(0); 
	cout.tie(0);
	int _=1;
	while(_--){
		solve();
	}
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3628kb

input:

3
0
0
0
1
0
0

output:

? 1 2
? 1 2
? 1 3
? 2 3
? 1 2
? 2 2
! 2 3 1 

result:

ok OK, guesses=6

Test #2:

score: -100
Wrong Answer
time: 77ms
memory: 3608kb

input:

1993
1
0
1
1
0
0
1
1
1
1
1
1
0
1
1
1
1
0
1
1
1
0
1
0
1
1
1
1
0
1
0
1
1
1
1
1
1
1
0
0
0
0
1
1
1
1
1
0
0
0
0
0
1
0
1
0
0
0
1
0
1
0
1
1
0
0
1
1
1
0
0
1
1
1
1
1
0
1
0
0
1
1
0
0
0
0
0
0
0
0
0
0
1
0
1
0
1
1
1
1
1
0
1
0
0
0
0
0
0
0
0
1
0
0
1
1
0
1
1
1
1
1
0
0
1
0
1
0
0
0
0
0
0
1
0
1
1
1
1
1
1
0
1
0
0
0
0
0...

output:

? 2 997
? 3 997
? 2 996
? 3 996
? 997 1993
? 998 1993
? 997 1992
? 998 1992
? 2 1993
? 3 1993
? 2 1992
? 3 1992
? 1 2
? 2 1993
? 3 1993
? 2 1992
? 3 1992
? 2 3
? 2 1992
? 3 1992
? 2 1991
? 3 1991
? 2 1991
? 3 1991
? 2 1990
? 3 1990
? 2 1990
? 3 1990
? 2 1989
? 3 1989
? 2 1989
? 3 1989
? 2 1988
? 3 1...

result:

wrong output format Unexpected end of file - int32 expected