結果

問題 No.282 おもりと天秤(2)
ユーザー eve__fuyukieve__fuyuki
提出日時 2018-03-16 21:51:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,945 ms / 5,000 ms
コード長 1,192 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 56,832 KB
実行使用メモリ 25,220 KB
平均クエリ数 212.58
最終ジャッジ日時 2024-07-17 01:41:01
合計ジャッジ時間 19,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,220 KB
testcase_01 AC 28 ms
24,964 KB
testcase_02 AC 25 ms
24,964 KB
testcase_03 AC 25 ms
25,220 KB
testcase_04 AC 26 ms
24,964 KB
testcase_05 AC 27 ms
24,580 KB
testcase_06 AC 34 ms
25,220 KB
testcase_07 AC 29 ms
25,220 KB
testcase_08 AC 33 ms
24,952 KB
testcase_09 AC 29 ms
24,964 KB
testcase_10 AC 494 ms
24,820 KB
testcase_11 AC 1,642 ms
25,220 KB
testcase_12 AC 519 ms
25,220 KB
testcase_13 AC 862 ms
25,220 KB
testcase_14 AC 1,446 ms
25,220 KB
testcase_15 AC 1,720 ms
24,964 KB
testcase_16 AC 112 ms
24,964 KB
testcase_17 AC 726 ms
24,580 KB
testcase_18 AC 1,266 ms
24,580 KB
testcase_19 AC 1,267 ms
25,080 KB
testcase_20 AC 1,929 ms
25,196 KB
testcase_21 AC 1,918 ms
24,556 KB
testcase_22 AC 1,945 ms
24,940 KB
testcase_23 AC 27 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
    int N,buf;
    int odd[1000] = {};
    int even[1000] = {};
    int A[501];
    char ans[500];
    bool flag=true;
    cin >> N;
    for(int i=0;i<=N;i++) A[i] = i;
    for(int i=1;i<=(N/2)*2;i++) even[i-1] = i;
    for(int i=1;i<=(N/2)*2-(N-1)%2*2;i++) odd[i-1] = i+1;
    while(flag){
        flag = false;
        cout << "? ";
        for(int i=0;i<2*N;i++) cout << A[even[i]] << " ";
        cout << endl;
        for(int i=0;i<N;i++){
            cin >> ans[i];
            if(ans[i] == '>'){
                buf = A[even[2*i]];
                A[even[2*i]] = A[even[2*i+1]];
                A[even[2*i+1]] = buf;
                flag = true;
            }
        }
        cout << "? ";
        for(int i=0;i<2*N;i++) cout << A[odd[i]] << " ";
        cout << endl;
        for(int i=0;i<N;i++){
            cin >> ans[i];
            if(ans[i] == '>'){
                buf = A[odd[2*i]];
                A[odd[2*i]] = A[odd[2*i+1]];
                A[odd[2*i+1]] = buf;
                flag = buf;
            }
        }
    }
    cout << "! ";
    for(int i=1;i<=N;i++) cout << A[i] << " ";
    cout << endl;
    return 0;
}
0