結果

問題 No.282 おもりと天秤(2)
ユーザー kk
提出日時 2021-03-23 14:00:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,723 ms / 5,000 ms
コード長 795 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 202,888 KB
実行使用メモリ 25,476 KB
平均クエリ数 440.67
最終ジャッジ日時 2024-07-17 02:59:39
合計ジャッジ時間 35,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 AC 42 ms
25,220 KB
testcase_02 AC 26 ms
24,964 KB
testcase_03 AC 26 ms
24,848 KB
testcase_04 AC 25 ms
25,220 KB
testcase_05 AC 33 ms
25,220 KB
testcase_06 AC 50 ms
24,964 KB
testcase_07 AC 25 ms
24,964 KB
testcase_08 AC 48 ms
25,476 KB
testcase_09 AC 23 ms
24,964 KB
testcase_10 AC 936 ms
24,964 KB
testcase_11 AC 3,276 ms
24,964 KB
testcase_12 AC 1,081 ms
25,220 KB
testcase_13 AC 1,644 ms
24,964 KB
testcase_14 AC 2,836 ms
24,836 KB
testcase_15 AC 3,466 ms
25,220 KB
testcase_16 AC 231 ms
25,220 KB
testcase_17 AC 1,498 ms
24,964 KB
testcase_18 AC 2,436 ms
24,580 KB
testcase_19 AC 2,400 ms
24,580 KB
testcase_20 AC 3,723 ms
25,196 KB
testcase_21 AC 3,585 ms
25,196 KB
testcase_22 AC 3,586 ms
24,940 KB
testcase_23 AC 24 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;

  vector<int> ret(n);
  for (int i = 0; i < n; i++)
    ret[i] = i + 1;

  for (int i = 0; i < 2 * n; i++) {
    cout << "?";
    int m = n;
    for (int j = i % 2; j + 1 < n; j += 2) {
      cout << " " << ret[j] << " " << ret[j+1];
      --m;
    }
    while (m--)
      cout << " " << 0 << " " << 0;
    cout << endl;
    cout.flush();
    
    m = n;
    for (int j = i % 2; j + 1 < n; j += 2) {
      char x;
      cin >> x;
      if (x == '>')
        swap(ret[j], ret[j+1]);
      --m;
    }
    while (m--) {
      char _;
      cin >> _;
    }
  }
  
  cout << "!";
  for (int x: ret)
    cout << " " << x;
  cout << endl;
  cout.flush();
  
  return 0;
}
0