結果
問題 | No.2780 The Bottle Imp |
ユーザー | maeshun |
提出日時 | 2024-06-08 13:16:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,717 bytes |
コンパイル時間 | 5,118 ms |
コンパイル使用メモリ | 280,632 KB |
実行使用メモリ | 36,172 KB |
最終ジャッジ日時 | 2024-06-08 13:16:31 |
合計ジャッジ時間 | 8,836 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 76 ms
10,836 KB |
testcase_08 | AC | 78 ms
10,844 KB |
testcase_09 | AC | 76 ms
10,840 KB |
testcase_10 | AC | 76 ms
10,972 KB |
testcase_11 | AC | 76 ms
10,836 KB |
testcase_12 | AC | 171 ms
18,916 KB |
testcase_13 | AC | 172 ms
18,888 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
7,336 KB |
testcase_17 | AC | 40 ms
7,152 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 40 ms
7,208 KB |
testcase_22 | AC | 27 ms
6,120 KB |
testcase_23 | AC | 34 ms
7,152 KB |
testcase_24 | AC | 62 ms
9,560 KB |
testcase_25 | AC | 115 ms
14,184 KB |
testcase_26 | AC | 49 ms
8,428 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 50 ms
11,676 KB |
testcase_30 | AC | 48 ms
10,220 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 58 ms
15,212 KB |
testcase_42 | WA | - |
testcase_43 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i, n) for(int i=0;i<(n);++i) #define rep1(i, n) for(int i=1;i<=(n);i++) #define ll long long using mint = modint998244353; using P = pair<ll,ll>; using lb = long double; using T = tuple<ll, ll, ll>; #ifdef LOCAL # include <debug_print.hpp> # define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else # define dbg(...) (static_cast<void>(0)) #endif int main() { int n; cin >> n; scc_graph g(n); vector<vector<int>> f(n); dsu uf(n); rep(i,n) { int m; cin >> m; rep(j,m) { int b; cin >> b; --b; g.add_edge(i, b); f[i].push_back(b); } } int m = 0; map<int, int> l; for(auto G : g.scc()) { for(int v : G) { uf.merge(v, G[0]); } l[uf.leader(G[0])] = m; m++; } vector<int> d(m); vector<vector<int>> G(m); rep(i,n) { for(int v : f[i]) { G[l[uf.leader(i)]].push_back(l[uf.leader(v)]); } } rep(i,m) { sort(G[i].begin(),G[i].end()); G[i].erase(unique(G[i].begin(),G[i].end()), G[i].end()); d[i] = G[i].size(); } queue<int> q; rep(i,m) { if(d[i]==0) q.push(i); } while(!q.empty()) { if(q.size()>=2){ cout<<"No"<< endl; return 0; } int u = q.front();q.pop(); m--; for(int v : G[u]) { d[v]--; if(d[v]==0) q.push(v); } } if(m==0){ cout<<"Yes"<<endl; } else{ cout<<"No"<<endl; } return 0; }