結果
問題 | No.2319 Friends+ |
ユーザー | kotatsugame |
提出日時 | 2023-05-26 21:52:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 910 bytes |
コンパイル時間 | 901 ms |
コンパイル使用メモリ | 77,440 KB |
実行使用メモリ | 22,144 KB |
最終ジャッジ日時 | 2024-06-07 06:33:45 |
合計ジャッジ時間 | 6,857 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
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<iostream> #include<vector> #include<set> using namespace std; int N,M; int P[20000]; int U[2<<17],V[2<<17],deg[20000]; vector<int>G[20000]; multiset<int>EX[20000]; int main() { cin>>N>>M; for(int i=0;i<N;i++) { cin>>P[i]; P[i]--; } for(int i=0;i<M;i++) { cin>>U[i]>>V[i]; U[i]--,V[i]--; if(U[i]==V[i])continue; deg[U[i]]++; deg[V[i]]++; } for(int i=0;i<M;i++) { if(U[i]==V[i])continue; if(make_pair(deg[U[i]],U[i])>make_pair(deg[V[i]],V[i]))swap(U[i],V[i]); G[U[i]].push_back(V[i]); EX[V[i]].insert(P[U[i]]); } int Q;cin>>Q; for(;Q--;) { int X,Y;cin>>X>>Y;X--,Y--; if(P[X]==P[Y]) { cout<<"No\n"; continue; } bool fn=EX[X].find(P[Y])!=EX[X].end(); for(int v:G[X])if(P[v]==P[Y])fn=true; if(!fn)cout<<"No\n"; else { cout<<"Yes\n"; for(int v:G[X]) { EX[v].erase(EX[v].find(P[X])); EX[v].insert(P[Y]); } P[X]=P[Y]; } } }