QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#297601 | #6303. Inversion | 552Hz | WA | 41ms | 34820kb | C++14 | 2.5kb | 2024-01-04 19:55:49 | 2024-01-04 19:55:50 |
Judging History
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,dis[N][N];
bool query(int l,int r){
if(dis[l][r]!=-1){
return dis[l][r];
}
if(l==r){
return 0;
}
cout<<"? "<<l<<" "<<r<<endl;
int ans;cin>>ans;
dis[l][r]=ans;
return ans;
}
int ans[N],pos[N];
void solve(){
cin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(i==j){
dis[i][j]=0;
}else{
dis[i][j]=-1;
}
}
}
pos[1]=1;
for(int i=2;i<=n;i++){
int l=1,r=i-1;
while(l<r){
int mid=(l+r)>>1;
int x=0;
for(int j=1;j<mid;j++){
if(pos[mid]<pos[j]){
x++;
}
}
if(query(pos[mid],i)!=(query(pos[mid]+1,i)+x)%2){
r=mid;
}else{
l=mid+1;
}
}
if(query(i-1,i)==0&&l==i-1){
l=i;
}
for(int j=i;j>l;j--){
pos[j]=pos[j-1];
}
pos[l]=i;
}
cout<<"! ";
for(int i=1;i<=n;i++){
ans[pos[i]]=i;
}
for(int i=1;i<=n;i++){
cout<<ans[i]<<" ";
}
}
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: 0ms
memory: 3468kb
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: 41ms
memory: 34820kb
input:
1993 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 1 1 1 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 1 1 0 0 1 1 0 1 1 1 1 0 1 0 1 0 0 0 0 1 1 0 1 1 0 0 0 1 0 1 0 0 1 0 1 1 0 0 1 0 1 1...
output:
? 1 2 ? 1 3 ? 2 3 ? 2 4 ? 3 4 ? 2 5 ? 3 5 ? 1 5 ? 4 5 ? 2 6 ? 3 6 ? 1 6 ? 5 6 ? 1 7 ? 2 7 ? 6 7 ? 5 7 ? 1 8 ? 2 8 ? 3 8 ? 4 8 ? 7 8 ? 1 9 ? 2 9 ? 8 9 ? 3 9 ? 9 10 ? 6 10 ? 7 10 ? 5 10 ? 8 10 ? 1 11 ? 2 11 ? 8 11 ? 9 11 ? 3 11 ? 10 11 ? 11 12 ? 8 12 ? 9 12 ? 2 12 ? 3 12 ? 11 13 ? 12 13 ? 3 13 ? 4 13 ...
result:
wrong answer Wa.