結果

問題 No.2124 Guess the Permutation
ユーザー Nzt3Nzt3
提出日時 2022-11-18 21:48:23
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 204,852 KB
実行使用メモリ 25,220 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 02:11:58
合計ジャッジ時間 3,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<bool>u(N+1);
  vector<int>ans(N);
  cout<<"? 2 "<<N<<endl;
  int S;
  cin>>S;
  ans[0]=(N+1)*(N)/2-S;
  u[ans[0]]=true;
  for(int i=1;i<N-1;i++){
    cout<<"? "<<i<<' '<<i+1<<endl;
    int s;
    cin>>s;
    ans[i]=s-ans[i-1];
    u[ans[i]]=true;
  }
  for(int i=1;i<=N;i++){
    if(!u[i])ans[N-1]=i;
  }
  cout<<'!';
  for(int i:ans)cout<<' '<<i;
  cout<<endl;
}
0