結果
問題 | No.282 おもりと天秤(2) |
ユーザー | pekempey |
提出日時 | 2015-09-19 00:19:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,238 ms / 5,000 ms |
コード長 | 1,510 bytes |
コンパイル時間 | 1,619 ms |
コンパイル使用メモリ | 168,032 KB |
実行使用メモリ | 25,452 KB |
平均クエリ数 | 267.12 |
最終ジャッジ日時 | 2024-07-16 21:26:08 |
合計ジャッジ時間 | 24,836 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
25,220 KB |
testcase_01 | AC | 30 ms
24,836 KB |
testcase_02 | AC | 26 ms
24,836 KB |
testcase_03 | AC | 26 ms
24,836 KB |
testcase_04 | AC | 26 ms
24,580 KB |
testcase_05 | AC | 30 ms
25,220 KB |
testcase_06 | AC | 34 ms
25,220 KB |
testcase_07 | AC | 26 ms
25,220 KB |
testcase_08 | AC | 34 ms
24,824 KB |
testcase_09 | AC | 24 ms
24,580 KB |
testcase_10 | AC | 546 ms
24,964 KB |
testcase_11 | AC | 2,012 ms
24,836 KB |
testcase_12 | AC | 1,101 ms
25,220 KB |
testcase_13 | AC | 1,334 ms
25,220 KB |
testcase_14 | AC | 1,802 ms
24,836 KB |
testcase_15 | AC | 2,078 ms
25,220 KB |
testcase_16 | AC | 127 ms
24,964 KB |
testcase_17 | AC | 1,345 ms
24,836 KB |
testcase_18 | AC | 1,760 ms
24,580 KB |
testcase_19 | AC | 1,767 ms
25,220 KB |
testcase_20 | AC | 2,238 ms
24,812 KB |
testcase_21 | AC | 2,142 ms
25,452 KB |
testcase_22 | AC | 2,170 ms
25,196 KB |
testcase_23 | AC | 23 ms
24,556 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) rep2 (i, 0, a) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) repr2 (i, 0, a) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define chmin(a, b) ((b) < a && (a = (b), true)) #define chmax(a, b) (a < (b) && (a = (b), true)) #define rng(a) (a).begin(), (a).end() using namespace std; typedef long long ll; int n; int C[555][555]; int a[555]; void query(vector<pair<int, int>> v) { v.resize(n, make_pair(-1, -1)); cout << "?"; rep (i, v.size()) cout << " " << v[i].first + 1 << " " << v[i].second + 1; cout << endl; rep (i, n) { string str; cin >> str; if (v[i].first == -1) continue; int a = v[i].first; int b = v[i].second; int c; if (str[0] == '<') { c = -1; } else if (str[0] == '>') { c = 1; } else { c = 0; } C[a][b] = c; C[b][a] = -c; } } bool checked[555][555]; int main() { cin >> n; rep (i, n) a[i] = i; vector<bool> used(n); int num = 0; while (num < n * (n - 1) / 2) { fill(rng(used), false); vector<pair<int, int>> q; rep (i, n) { rep2 (j, i + 1, n) { if (!checked[i][j] && !used[i] && !used[j]) { q.emplace_back(i, j); checked[i][j] = true; num++; used[i] = true; used[j] = true; } if (q.size() == n) break; } if (q.size() == n) break; } query(q); } rep (i, n) { rep2 (j, i, n) { if (C[a[i]][a[j]] > 0) swap(a[i], a[j]); } } cout << "!"; rep (i, n) cout << " " << a[i] + 1; cout << endl; return 0; }