結果

問題 No.282 おもりと天秤(2)
ユーザー koyoprokoyopro
提出日時 2015-10-25 17:18:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,905 ms / 5,000 ms
コード長 867 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 161,300 KB
実行使用メモリ 25,452 KB
平均クエリ数 212.21
最終ジャッジ日時 2024-07-16 21:43:17
合計ジャッジ時間 18,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,220 KB
testcase_01 AC 24 ms
24,580 KB
testcase_02 AC 21 ms
24,964 KB
testcase_03 AC 21 ms
25,220 KB
testcase_04 AC 21 ms
24,964 KB
testcase_05 AC 23 ms
25,220 KB
testcase_06 AC 24 ms
24,964 KB
testcase_07 AC 20 ms
25,220 KB
testcase_08 AC 23 ms
25,220 KB
testcase_09 AC 20 ms
25,220 KB
testcase_10 AC 461 ms
25,220 KB
testcase_11 AC 1,521 ms
24,580 KB
testcase_12 AC 463 ms
25,208 KB
testcase_13 AC 745 ms
24,580 KB
testcase_14 AC 1,344 ms
24,964 KB
testcase_15 AC 1,640 ms
24,964 KB
testcase_16 AC 98 ms
25,220 KB
testcase_17 AC 714 ms
25,220 KB
testcase_18 AC 1,134 ms
25,220 KB
testcase_19 AC 1,209 ms
24,964 KB
testcase_20 AC 1,752 ms
25,452 KB
testcase_21 AC 1,786 ms
24,812 KB
testcase_22 AC 1,905 ms
25,196 KB
testcase_23 AC 19 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i, n) for(int i=0; i<(n); i++)

int N,T;
signed main()
{
    cin >> N;
    vector<int> V(N+2, 0);
    REP(i,N) V[i] = (i+1);
    int ok = 0;
    REP(l,600) {
        int d = l % 2;
        cout << "?";
        REP(i,N) {
            if (2*i+1+d < N) {
                int a = V[2*i+d];
                int b = V[2*i+1+d];
                printf(" %d %d", a, b);
            } else {
                printf(" 0 0");
            }
        }
        cout << endl << flush;
        char op;
        ok++;
        REP(i,N) {
            cin >> op;
            if (op == '>') {
                swap(V[2*i+d], V[2*i+1+d]);
                ok = 0;
            }
        }
        if (ok >= 2) break;
    }
    cout << "!";
    REP(i,N) {
        cout << " " << V[i];
    }
    cout << endl << flush;
    return 0;
}
0