結果

問題 No.2124 Guess the Permutation
ユーザー ButterflvButterflv
提出日時 2024-08-11 16:23:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 247,080 KB
実行使用メモリ 25,452 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-08-11 16:23:20
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,452 KB
testcase_01 AC 20 ms
24,580 KB
testcase_02 AC 19 ms
24,580 KB
testcase_03 AC 20 ms
24,964 KB
testcase_04 AC 23 ms
25,220 KB
testcase_05 AC 23 ms
25,220 KB
testcase_06 AC 36 ms
24,964 KB
testcase_07 AC 50 ms
24,964 KB
testcase_08 AC 49 ms
25,300 KB
testcase_09 AC 50 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  cout<<fixed<<setprecision(15);

  cin>>N;
  vector<int> S(N-1);
  vector<int> P(N, -1);
  cout<<"? "<<2<<' '<<N<<endl;
  cin>>S[1];
  P[0]=N*(N+1)/2 - S[1];
  cout<<"? "<<1<<' '<<N-1<<endl;
  cin>>S[0];
  P[N-1]=N*(N+1)/2 - S[0];
  for(int i=1;i<=N-3;i++){
    cout<<"? "<<i+2<<' '<<N<<endl;
    cin>>S[i+1];
    P[i]=S[i]-S[i+1];
  }
  int Sum=0;for(int i=0;i<N;i++)if(i!=N-2)Sum+=P[i];
  P[N-2]=N*(N+1)/2 - Sum;
  cout<<"! ";
  for(int i=0;i<N;i++)cout<<P[i]<<((i==N-1)?"":" ");
  cout<<endl;
}
0