結果
問題 | No.483 マッチ並べ |
ユーザー | mayoko_ |
提出日時 | 2016-04-11 22:45:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,401 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 115,432 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 06:00:45 |
合計ジャッジ時間 | 2,707 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 2 ms
5,376 KB |
testcase_54 | AC | 3 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> #include<random> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; const int MAXN = 111; pii from[MAXN], to[MAXN]; int color[2*MAXN]; bool dfs(int v, int p, const vector<vi>& G) { if (p == -1) color[v] = 2; else color[v] = 1; for (int ch : G[v]) if (ch != p) { if (color[ch] == 2) break; if (color[ch] == 1) return false; if (!dfs(ch, v, G)) return false; break; } return true; } int main() { cin.tie(0); ios::sync_with_stdio(false); // input int N; cin >> N; assert(1 <= N && N <= 100); for (int i = 0; i < N; i++) { cin >> from[i].first >> from[i].second >> to[i].first >> to[i].second; assert(1 <= from[i].first && from[i].first <= 100); assert(1 <= from[i].second && from[i].second <= 100); assert(1 <= to[i].first && to[i].first <= 100); assert(1 <= to[i].second && to[i].second <= 100); assert(abs(to[i].first-from[i].first) + abs(to[i].second-from[i].second) == 1); assert(from[i].first < to[i].first || from[i].second < to[i].second); } for (int i = 0; i < N; i++) for (int j = i+1; j < N; j++) { assert(!(from[i] == from[j] && to[i] == to[j])); } // solve // まずわかりやすいグラフを作る map<pii, int> mp; for (int i = 0; i < N; i++) { mp[from[i]] = 0; mp[to[i]] = 0; } int k = 0; for (auto& el : mp) el.second = k++; vector<vector<int> > G(k); for (int i = 0; i < N; i++) { int u = mp[from[i]], v = mp[to[i]]; G[u].push_back(v); G[v].push_back(u); } assert(k < 2*MAXN); // 貪欲 dfs for (int i = 0; i < k; i++) if (!color[i]) { if (!dfs(i, -1, G)) { cout << "NO" << endl; return 0; } } cout << "YES" << endl; return 0; }