結果

問題 No.282 おもりと天秤(2)
ユーザー beetbeet
提出日時 2020-01-27 15:47:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,917 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 204,348 KB
実行使用メモリ 25,220 KB
平均クエリ数 501.00
最終ジャッジ日時 2024-07-17 02:27:15
合計ジャッジ時間 24,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
24,836 KB
testcase_01 AC 183 ms
25,220 KB
testcase_02 AC 122 ms
24,580 KB
testcase_03 AC 102 ms
24,964 KB
testcase_04 AC 87 ms
25,220 KB
testcase_05 AC 157 ms
24,580 KB
testcase_06 AC 192 ms
24,580 KB
testcase_07 AC 87 ms
25,220 KB
testcase_08 AC 195 ms
24,580 KB
testcase_09 AC 44 ms
25,220 KB
testcase_10 AC 999 ms
24,836 KB
testcase_11 AC 1,812 ms
24,836 KB
testcase_12 AC 1,010 ms
24,964 KB
testcase_13 AC 1,243 ms
24,836 KB
testcase_14 AC 1,640 ms
24,964 KB
testcase_15 AC 1,859 ms
24,836 KB
testcase_16 AC 444 ms
24,580 KB
testcase_17 AC 1,233 ms
24,580 KB
testcase_18 AC 1,519 ms
25,220 KB
testcase_19 AC 1,522 ms
24,836 KB
testcase_20 AC 1,867 ms
24,812 KB
testcase_21 AC 1,841 ms
24,940 KB
testcase_22 AC 1,917 ms
24,556 KB
testcase_23 AC 37 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  int n;
  cin>>n;
  vector<int> ans(n);
  for(int i=0;i<n;i++) ans[i]=i+1;

  for(int t=0;t<500;t++){
    cout<<"?";
    int c=n;
    for(int i=t&1;i+1<n;i+=2){
      cout<<" "<<ans[i];
      cout<<" "<<ans[i+1];
      c--;
    }
    while(c--) cout<<" "<<0<<" "<<0;
    cout<<endl;

    c=n;
    string x;
    for(int i=t&1;i+1<n;i+=2){
      cin>>x;
      if(x==">") swap(ans[i],ans[i+1]);
      c--;
    }
    while(c--) cin>>x;
  }
  
  cout<<"!";
  for(int x:ans) cout<<" "<<x;
  cout<<endl;
  return 0;
}
0