結果

問題 No.282 おもりと天秤(2)
ユーザー beetbeet
提出日時 2020-01-27 15:45:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 773 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 195,320 KB
最終ジャッジ日時 2025-01-08 20:40:33
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
25,844 KB
testcase_01 AC 779 ms
25,984 KB
testcase_02 AC 500 ms
25,972 KB
testcase_03 AC 434 ms
26,356 KB
testcase_04 AC 352 ms
25,332 KB
testcase_05 AC 635 ms
25,972 KB
testcase_06 AC 826 ms
25,984 KB
testcase_07 AC 348 ms
25,588 KB
testcase_08 AC 828 ms
25,600 KB
testcase_09 AC 143 ms
25,204 KB
testcase_10 AC 4,190 ms
25,344 KB
testcase_11 TLE -
testcase_12 AC 4,363 ms
42,220 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 2,036 ms
42,360 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 139 ms
42,720 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<2000;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