結果
問題 | No.1328 alligachi-problem |
ユーザー | trineutron |
提出日時 | 2020-12-25 14:12:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 2,416 ms |
コンパイル使用メモリ | 216,492 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-09-22 07:16:19 |
合計ジャッジ時間 | 8,674 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
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 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; bool isok(const vector<vector<pair<int, int>>> &q, const vector<int> &idx, int r, int b) { for (int i = 0; i < 4; i++) { int color = i % 2 == 0 ? r : b; if (idx[i] > int(q.at(i).size())) return false; if (idx[i] < int(q.at(i).size()) and q.at(i).at(idx[i]).first < color) return false; } return true; }; void dfs(const vector<vector<pair<int, int>>> &q, vector<int> v, vector<int> &ans, int n) { if (int(ans.size()) == n) return; for (int i = 0; i < 4; i++) { if (q.at(i).size() == 0) continue; v.at(i)++; int r = v.at(0) + v.at(1), b = v.at(2) + v.at(3); if (isok(q, v, r, b)) { ans.push_back(q.at(i).at(v.at(i) - 1).second); dfs(q, v, ans, n); if (int(ans.size()) == n) return; ans.pop_back(); } v.at(i)--; } } int main() { int n; cin >> n; vector<char> c(n), x(n); vector<int> y(n); for (int i = 0; i < n; i++) { cin >> c.at(i) >> x.at(i) >> y.at(i); } vector<vector<pair<int, int>>> q(4); for (int i = 0; i < n; i++) { if (c.at(i) == 'R') { if (x.at(i) == 'R') { q.at(0).emplace_back(y.at(i), i); } else { q.at(1).emplace_back(y.at(i), i); } } else { if (x.at(i) == 'R') { q.at(2).emplace_back(y.at(i), i); } else { q.at(3).emplace_back(y.at(i), i); } } } for (int i = 0; i < 4; i++) { sort(q.at(i).begin(), q.at(i).end()); } vector<int> ans; dfs(q, vector<int>{0, 0, 0, 0}, ans, n); if (ans.empty()) { cout << "No" << endl; return 0; } cout << "Yes" << endl; for (int i = 0; i < n; i++) { cout << ans.at(i) + 1; if (i == n - 1) { cout << endl; } else { cout << " "; } } }