結果
問題 | No.1605 Matrix Shape |
ユーザー | nawawan |
提出日時 | 2021-07-16 22:03:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,276 bytes |
コンパイル時間 | 1,933 ms |
コンパイル使用メモリ | 178,684 KB |
実行使用メモリ | 38,936 KB |
最終ジャッジ日時 | 2024-07-06 09:15:07 |
合計ジャッジ時間 | 9,038 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
9,468 KB |
testcase_01 | AC | 7 ms
9,444 KB |
testcase_02 | AC | 8 ms
9,524 KB |
testcase_03 | AC | 8 ms
9,556 KB |
testcase_04 | AC | 8 ms
9,484 KB |
testcase_05 | WA | - |
testcase_06 | AC | 6 ms
9,488 KB |
testcase_07 | AC | 8 ms
9,548 KB |
testcase_08 | AC | 7 ms
9,556 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 8 ms
9,308 KB |
testcase_14 | WA | - |
testcase_15 | AC | 8 ms
9,472 KB |
testcase_16 | WA | - |
testcase_17 | AC | 8 ms
9,496 KB |
testcase_18 | AC | 7 ms
9,460 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 440 ms
36,136 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 115 ms
12,120 KB |
testcase_26 | AC | 115 ms
12,220 KB |
testcase_27 | WA | - |
testcase_28 | AC | 114 ms
12,140 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 283 ms
18,416 KB |
testcase_34 | AC | 120 ms
11,924 KB |
testcase_35 | AC | 338 ms
26,952 KB |
testcase_36 | AC | 199 ms
27,420 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int dfs(int now, int par, vector<vector<int>>&G, vector<int>&d, vector<bool>&used){ if(d[now] != -1) return d[now]; int temp = 0; used[now] = true; for(int t: G[now]){ if(used[t]) continue; temp = max(temp, dfs(t, now, G, d, used)); } temp += 1; return d[now] = temp; } int main(){ int N; cin >> N; vector<int> H(N), W(N); vector<vector<int>> G(200010); set<int> s; vector<int> cnt(200010, -1); for(int i = 0; i < N; i++){ cin >> H[i] >> W[i]; H[i]--; W[i]--; s.insert(H[i]); s.insert(W[i]); G[H[i]].push_back(W[i]); if(cnt[W[i]] == -1) cnt[W[i]] = 0; if(cnt[H[i]] == -1) cnt[H[i]] = 0; cnt[W[i]]++; } bool f = true; for(int i = 0; i < 200010; i++){ if(cnt[i] == 0) f = false; } vector<int> d(200010, -1); if(f){ d[W[0]] = 1; } vector<bool> used(200010, false); for(int i = 0; i < 200010; i++){ dfs(i, -1, G, d, used); } int temp = *max_element(d.begin(), d.end()); if(f && temp == (int)s.size()) cout << s.size() << endl; else if(!f && temp == (int)s.size()) cout << 1 << endl; else cout << 0 << endl; }