結果

問題 No.282 おもりと天秤(2)
ユーザー h_nosonh_noson
提出日時 2016-06-17 20:27:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 66,056 KB
実行使用メモリ 24,432 KB
平均クエリ数 220.83
最終ジャッジ日時 2023-09-23 10:56:30
合計ジャッジ時間 21,365 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

int main(void) {
    int n;
    cin >> n;

    int i, j;
    int ans[500];
    rep (i,n) ans[i] = i+1;
    rep (i,n) {
        cout << "? ";
        int rest = n;
        for (j = i % 2; j < n-1; j+=2,rest--)
            cout << ans[j] << " " << ans[j+1] << " ";
        while (rest--)
            cout << "0 0 ";
        cout << endl;
        rest = n;
        char c;
        for (j = i % 2; j < n-1; j+=2,rest--) {
            cin >> c;
            if (c == '>')
                swap(ans[j],ans[j+1]);
        }
        while (rest--) cin >> c;
    }
    rep (i,n) cout << ans[i] << " ";
    cout << endl;
    return 0;
}
0