結果

問題 No.282 おもりと天秤(2)
ユーザー face4face4
提出日時 2019-11-20 15:28:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,936 ms / 5,000 ms
コード長 1,542 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 25,460 KB
平均クエリ数 267.12
最終ジャッジ日時 2024-07-17 02:22:52
合計ジャッジ時間 21,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,836 KB
testcase_01 AC 36 ms
24,836 KB
testcase_02 AC 25 ms
25,092 KB
testcase_03 AC 24 ms
25,220 KB
testcase_04 AC 24 ms
24,580 KB
testcase_05 AC 33 ms
24,580 KB
testcase_06 AC 37 ms
24,568 KB
testcase_07 AC 24 ms
25,220 KB
testcase_08 AC 36 ms
25,220 KB
testcase_09 AC 23 ms
25,220 KB
testcase_10 AC 494 ms
24,836 KB
testcase_11 AC 1,788 ms
24,836 KB
testcase_12 AC 976 ms
24,836 KB
testcase_13 AC 1,184 ms
24,580 KB
testcase_14 AC 1,610 ms
25,220 KB
testcase_15 AC 1,885 ms
25,220 KB
testcase_16 AC 127 ms
25,220 KB
testcase_17 AC 1,158 ms
25,460 KB
testcase_18 AC 1,586 ms
25,208 KB
testcase_19 AC 1,520 ms
25,204 KB
testcase_20 AC 1,922 ms
24,940 KB
testcase_21 AC 1,936 ms
25,184 KB
testcase_22 AC 1,883 ms
25,196 KB
testcase_23 AC 27 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;

bool used[2000][501] = {};
vector<int> arc[501];
int indeg[501] = {};
int n;

void ask(vector<int> &v){
    cout << "?";
    for(int x : v)  cout << " " << x;
    for(int i = 0; i < 2*n-v.size(); i++)   cout << " 0";
    cout << endl << flush;
    char c;
    for(int i = 0; i < n; i++){
        cin >> c;
        if(c == '=')    continue;
        if(c == '<')    arc[v[2*i]].push_back(v[2*i+1]), indeg[v[2*i+1]]++;
        else            arc[v[2*i+1]].push_back(v[2*i]), indeg[v[2*i]]++;
    }
}

void answer(vector<int> &v){
    cout << "!";
    for(int x : v)  cout << " " << x;
    cout << endl << flush;
}

int main(){
    cin >> n;
    vector<int> v[2000];
    for(int i = 1; i <= n; i++){
        for(int j = i+1; j <= n; j++){
            for(int k = 0;;k++){    // TLE?
                if(!used[k][i] && !used[k][j]){
                    used[k][i] = used[k][j] = true;
                    v[k].push_back(i);  v[k].push_back(j);
                    break;
                }
            }
        }
    }
    for(int i = 0; i < 2000; i++){
        if(v[i].size() == 0)    break;
        ask(v[i]);
    }
    vector<int> topo;
    queue<int> q;
    for(int i = 1; i <= n; i++)  if(indeg[i] == 0)   q.push(i);
    while(!q.empty()){
        int x = q.front();  q.pop();
        topo.push_back(x);
        for(int child : arc[x]){
            indeg[child]--;
            if(indeg[child] == 0)   q.push(child);
        }
    }
    answer(topo);
    return 0;
}   
0