結果
問題 | No.282 おもりと天秤(2) |
ユーザー | pekempey |
提出日時 | 2015-09-19 00:08:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,201 bytes |
コンパイル時間 | 1,458 ms |
コンパイル使用メモリ | 167,204 KB |
実行使用メモリ | 32,292 KB |
最終ジャッジ日時 | 2024-07-16 21:24:52 |
合計ジャッジ時間 | 14,270 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int quicksort(int*, int, int)’: main.cpp:41:1: warning: no return statement in function returning non-void [-Wreturn-type] 41 | } | ^ main.cpp: In function ‘void query(std::vector<std::pair<int, int> >)’: main.cpp:50:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 50 | scanf("%s", str); | ~~~~~^~~~~~~~~~~
ソースコード
#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; #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]; int quicksort(int a[], int l, int r) { if (l < r) { int p = a[rand() % (r - l + 1) + l]; int i = l - 1; int j = r + 1; while (true) { while (C[a[++i]][p] < 0); while (C[a[--j]][p] > 0); if (i >= j) break; swap(a[i], a[j]); } quicksort(a, l, i - 1); quicksort(a, j + 1, r); } } void query(vector<pair<int, int>> v) { v.resize(n); cout << "?"; rep (i, v.size()) cout << " " << v[i].first + 1 << " " << v[i].second + 1; cout << endl; char str[2]; rep (i, n) { scanf("%s", str); int a = v[i].first; int b = v[i].second; int c; if (str[i] == '<') { c = -1; } else if (str[i] == '>') { 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; rep (i, n) a[i] = rand() % 100; 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); } quicksort(a, 0, n - 1); cout << "!"; rep (i, n) cout << " " << a[i] + 1 << endl; return 0; }