結果
問題 | No.2319 Friends+ |
ユーザー | t98slider |
提出日時 | 2023-05-26 23:08:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,447 bytes |
コンパイル時間 | 1,818 ms |
コンパイル使用メモリ | 177,232 KB |
実行使用メモリ | 32,000 KB |
最終ジャッジ日時 | 2024-06-07 08:48:23 |
合計ジャッジ時間 | 15,318 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 212 ms
26,624 KB |
testcase_08 | AC | 220 ms
26,624 KB |
testcase_09 | AC | 213 ms
26,624 KB |
testcase_10 | AC | 216 ms
26,752 KB |
testcase_11 | AC | 217 ms
26,752 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 157 ms
26,240 KB |
testcase_20 | AC | 1,151 ms
26,752 KB |
testcase_21 | AC | 593 ms
26,624 KB |
testcase_22 | AC | 2,124 ms
26,752 KB |
testcase_23 | AC | 158 ms
26,368 KB |
testcase_24 | AC | 158 ms
26,496 KB |
testcase_25 | AC | 159 ms
26,368 KB |
testcase_26 | AC | 156 ms
26,624 KB |
testcase_27 | AC | 168 ms
26,624 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m, u, v; cin >> n >> m; int sqN = 500; vector<int> pos(n); //vector<set<int>> world(n); vector<multiset<int>> fri(n); vector<vector<int>> g(n); vector<vector<int>> G(n); for(int i = 0; i < n; i++){ cin >> pos[i]; pos[i]--; } for(int i = 0; i < m; i++){ cin >> u >> v; u--, v--; g[u].emplace_back(v); g[v].emplace_back(u); } for(int i = 0; i < n; i++){ for(auto &&j : g[i]){ if(g[j].size() < sqN) fri[i].insert(pos[j]); else G[i].emplace_back(j); } } int Q; cin >> Q; while(Q--){ cin >> u >> v; u--, v--; if(pos[u] == pos[v]){ cout << "No" << '\n'; continue; } bool flag = (fri[u].find(pos[v]) != fri[u].end()); if(!flag){ for(auto &&c : G[v]){ if(pos[c] == pos[v]){ flag = true; break; } } } cout << (flag ? "Yes" : "No") << '\n'; if(!flag) continue; if(g[u].size() < sqN){ for(auto &&c : g[u]){ fri[c].erase(fri[c].find(pos[u])); fri[c].insert(pos[v]); } } pos[u] = pos[v]; } }