結果
問題 | No.2319 Friends+ |
ユーザー | sasa8uyauya |
提出日時 | 2024-08-31 14:29:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 878 bytes |
コンパイル時間 | 464 ms |
コンパイル使用メモリ | 82,348 KB |
実行使用メモリ | 434,808 KB |
最終ジャッジ日時 | 2024-08-31 14:29:55 |
合計ジャッジ時間 | 45,836 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,556 KB |
testcase_01 | AC | 36 ms
52,348 KB |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 1,094 ms
89,368 KB |
testcase_08 | AC | 906 ms
89,692 KB |
testcase_09 | AC | 954 ms
89,572 KB |
testcase_10 | AC | 929 ms
89,572 KB |
testcase_11 | AC | 984 ms
89,416 KB |
testcase_12 | AC | 62 ms
67,636 KB |
testcase_13 | AC | 63 ms
66,276 KB |
testcase_14 | AC | 65 ms
67,664 KB |
testcase_15 | AC | 63 ms
68,356 KB |
testcase_16 | AC | 65 ms
68,704 KB |
testcase_17 | AC | 38 ms
52,656 KB |
testcase_18 | AC | 767 ms
94,252 KB |
testcase_19 | WA | - |
testcase_20 | AC | 823 ms
90,236 KB |
testcase_21 | AC | 839 ms
89,784 KB |
testcase_22 | AC | 889 ms
89,764 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1,094 ms
89,764 KB |
testcase_29 | AC | 948 ms
89,816 KB |
testcase_30 | AC | 844 ms
89,820 KB |
testcase_31 | AC | 856 ms
89,768 KB |
testcase_32 | AC | 793 ms
89,912 KB |
testcase_33 | AC | 796 ms
89,944 KB |
testcase_34 | AC | 774 ms
89,820 KB |
testcase_35 | AC | 774 ms
89,908 KB |
testcase_36 | AC | 763 ms
85,556 KB |
testcase_37 | TLE | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
n,m=map(int,input().split()) p=list(map(int,input().split())) for i in range(n): p[i]-=1 B=448 e=[[] for i in range(n)] for i in range(m): a,b=map(int,input().split()) a-=1 b-=1 e[a]+=[b] e[b]+=[a] f=[len(e[i])>=B for i in range(n)] e2=[[] for i in range(n)] for s in range(n): for t in e[s]: if f[t]==1: e2[s]+=[t] c=[{} for i in range(n)] for s in range(n): if f[s]==1: c[s]={i:0 for i in range(n)} for s in range(n): if f[s]==0: for t in e2[s]: c[t][p[s]]+=1 Q=int(input()) for _ in range(Q): x,y=map(int,input().split()) x-=1 y-=1 ok=p[x]!=p[y] pp=p[x] np=p[y] if f[x]: ok&=any(p[t]==p[y] for t in e2[x]) ok&=c[x][p[y]]!=0 else: ok&=any(p[t]==p[y] for t in e[x]) if ok: print("Yes") if f[x]==0: for t in e2[x]: c[t][pp]-=1 c[t][np]+=1 p[x]=p[y] else: print("No")