結果
問題 | No.416 旅行会社 |
ユーザー | Tawara |
提出日時 | 2016-08-27 06:56:57 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 883 ms / 4,000 ms |
コード長 | 920 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 77,056 KB |
実行使用メモリ | 243,204 KB |
最終ジャッジ日時 | 2024-11-08 18:55:20 |
合計ジャッジ時間 | 11,571 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 348 ms
142,376 KB |
testcase_01 | AC | 89 ms
75,520 KB |
testcase_02 | AC | 88 ms
75,520 KB |
testcase_03 | AC | 92 ms
75,520 KB |
testcase_04 | AC | 88 ms
75,392 KB |
testcase_05 | AC | 90 ms
75,264 KB |
testcase_06 | AC | 91 ms
76,928 KB |
testcase_07 | AC | 102 ms
78,464 KB |
testcase_08 | AC | 133 ms
80,128 KB |
testcase_09 | AC | 192 ms
85,376 KB |
testcase_10 | AC | 348 ms
142,508 KB |
testcase_11 | AC | 534 ms
243,204 KB |
testcase_12 | AC | 496 ms
211,156 KB |
testcase_13 | AC | 481 ms
211,612 KB |
testcase_14 | AC | 766 ms
202,720 KB |
testcase_15 | AC | 804 ms
202,716 KB |
testcase_16 | AC | 860 ms
209,064 KB |
testcase_17 | AC | 883 ms
202,716 KB |
testcase_18 | AC | 797 ms
202,844 KB |
testcase_19 | AC | 711 ms
173,824 KB |
testcase_20 | AC | 572 ms
152,704 KB |
ソースコード
import sys def dfs(b,h,E,ans,reachable,turn): if reachable[h]: return reachable[h] = 1 ans[h] = turn for nxt in E[h]: if b == nxt: continue dfs(h,nxt,E,ans,reachable,turn) def solve(): ofs = 10**6 sys.setrecursionlimit(ofs) N,M,Q = map(int,raw_input().split()) reachable = [False]*N EL = [[] for i in xrange(N)] ans = [0]*N Break = set() Edges = map(lambda x: map(lambda x:int(x)-1,x.split()),sys.stdin.readlines()) for i in xrange(Q): Break.add(Edges[M+i][0]+Edges[M+i][1]*ofs) Break.add(Edges[M+i][0]*ofs+Edges[M+i][1]) for i in xrange(M): f,t = Edges[i] if (f+t*ofs) in Break: continue EL[f].append(t) EL[t].append(f) dfs(-1,0,EL,ans,reachable,-1) for i in xrange(Q,0,-1): f,t = Edges[M+i-1] EL[f].append(t) EL[t].append(f) if reachable[f]: dfs(f,t,EL,ans,reachable,i) elif reachable[t]: dfs(t,f,EL,ans,reachable,i) for i in xrange(1,N): print ans[i] solve()