結果

問題 No.282 おもりと天秤(2)
ユーザー t98slidert98slider
提出日時 2023-02-23 19:23:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,149 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 188,856 KB
実行使用メモリ 25,604 KB
平均クエリ数 219.83
最終ジャッジ日時 2024-07-23 13:40:34
合計ジャッジ時間 8,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 22 ms
25,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<deque<int>> tb(n);
    for(int i = 0; i < n; i++) tb[i].push_back(i);
    while(tb.size() >= 2){
        vector<deque<int>> nxt((tb.size() + 1) / 2);
        if(tb.size() & 1) nxt.back() = tb.back();
        bool flag = true;
        while(flag){
            flag = false;
            vector<int> query(n);
            for(int i = 0; i + 1 < tb.size(); i += 2){
                if(tb[i].empty() || tb[i + 1].empty()){
                    int to = i / 2;
                    nxt[to].insert(nxt[to].end(), tb[i].begin(), tb[i].end());
                    nxt[to].insert(nxt[to].end(), tb[i + 1].begin(), tb[i + 1].end());
                    tb[i].clear();
                    tb[i + 1].clear();
                    continue;
                }
                flag = true;
                query[tb[i].front()] = i / 2 + 1;
                query[tb[i + 1].front()] = i / 2 + 1;
            }
            if(!flag) break;
            cout << "?";
            for(int i = 0; i < n; i++) cout << " " << query[i];
            cout << endl;
            char c;
            int cnt = n;
            for(int i = 0; i + 1 < tb.size(); i += 2){
                cin >> c;
                cnt--;
                if(tb[i].empty() || tb[i + 1].empty())continue;
                int to = i / 2;
                if(c == '='){
                    nxt[to].push_back(tb[i].front());
                    nxt[to].push_back(tb[i + 1].front());
                    tb[i].pop_front();
                    tb[i + 1].pop_front();
                }else if(c == '<'){
                    nxt[to].push_back(tb[i].front());
                    tb[i].pop_front();
                }else{
                    nxt[to].push_back(tb[i + 1].front());
                    tb[i + 1].pop_front();
                }
            }
            while(cnt--) cin >> c;
        }
        swap(tb, nxt);
    }
    cout << "!";
    for(int i = 0; i < tb[0].size(); i++){
        cout << " " << tb[0][i] + 1;
    }
    cout << endl;
}
0