結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
24,836 KB
testcase_01 AC 230 ms
25,476 KB
testcase_02 AC 151 ms
24,836 KB
testcase_03 AC 131 ms
24,836 KB
testcase_04 AC 109 ms
24,964 KB
testcase_05 AC 190 ms
24,580 KB
testcase_06 AC 248 ms
24,580 KB
testcase_07 AC 103 ms
25,220 KB
testcase_08 AC 243 ms
25,220 KB
testcase_09 AC 49 ms
24,836 KB
testcase_10 AC 1,183 ms
25,220 KB
testcase_11 AC 2,245 ms
25,220 KB
testcase_12 AC 1,228 ms
25,220 KB
testcase_13 AC 1,617 ms
24,580 KB
testcase_14 AC 1,992 ms
25,220 KB
testcase_15 AC 2,220 ms
24,836 KB
testcase_16 AC 575 ms
25,220 KB
testcase_17 AC 1,451 ms
25,220 KB
testcase_18 AC 1,861 ms
25,460 KB
testcase_19 AC 1,880 ms
24,580 KB
testcase_20 AC 2,343 ms
25,196 KB
testcase_21 AC 2,341 ms
25,196 KB
testcase_22 AC 2,203 ms
25,196 KB
testcase_23 AC 43 ms
25,196 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);
    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;
        REP(i,N) {
            cin >> op;
            if (op == '>') {
                swap(V[2*i+d], V[2*i+1+d]);
            }
        }
    }
    cout << "!";
    REP(i,N) {
        cout << " " << V[i];
    }
    cout << endl << flush;
    return 0;
}
0