結果
問題 | No.1983 [Cherry 4th Tune C] 南の島のマーメイド |
ユーザー | 沙耶花 |
提出日時 | 2022-06-17 22:03:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,737 bytes |
コンパイル時間 | 4,697 ms |
コンパイル使用メモリ | 267,264 KB |
実行使用メモリ | 43,588 KB |
最終ジャッジ日時 | 2024-10-09 08:00:34 |
合計ジャッジ時間 | 11,512 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 58 ms
11,136 KB |
testcase_35 | AC | 137 ms
40,824 KB |
testcase_36 | AC | 117 ms
19,072 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 38 ms
5,248 KB |
testcase_39 | AC | 143 ms
43,588 KB |
testcase_40 | WA | - |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 template< typename G > struct LowLink { const G &g; vector< int > used, ord, low; vector< int > articulation; vector< pair< int, int > > bridge; LowLink(const G &g) : g(g) {} int dfs(int idx, int k, int par) { used[idx] = true; ord[idx] = k++; low[idx] = ord[idx]; bool is_articulation = false; int cnt = 0; for(auto &to : g[idx]) { if(!used[to]) { ++cnt; k = dfs(to, k, idx); low[idx] = min(low[idx], low[to]); is_articulation |= ~par && low[to] >= ord[idx]; if(ord[idx] < low[to]) bridge.emplace_back(minmax(idx, (int) to)); } else if(to != par) { low[idx] = min(low[idx], ord[to]); } } is_articulation |= par == -1 && cnt > 1; if(is_articulation) articulation.push_back(idx); return k; } virtual void build() { used.assign(g.size(), 0); ord.assign(g.size(), 0); low.assign(g.size(), 0); int k = 0; for(int i = 0; i < g.size(); i++) { if(!used[i]) k = dfs(i, k, -1); } } }; int main(){ int N,M,Q; cin>>N>>M>>Q; vector<int> u(M),v(M); rep(i,M){ scanf("%d %d",&u[i],&v[i]); u[i]--,v[i]--; } vector<vector<int>> E(N); rep(i,M){ E[u[i]].push_back(v[i]); E[v[i]].push_back(u[i]); } LowLink<vector<vector<int>>> L(E); L.build(); dsu D(N); rep(i,M){ if(L.ord[u[i]]<L.low[v[i]])D.merge(u[i],v[i]); } rep(_,Q){ int x,y; scanf("%d %d",&x,&y); x--,y--; if(D.same(x,y))printf("Yes\n"); else printf("No\n"); } return 0; }