結果
問題 | No.416 旅行会社 |
ユーザー | Tawara |
提出日時 | 2016-08-27 00:35:27 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 938 ms / 4,000 ms |
コード長 | 1,049 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 76,800 KB |
実行使用メモリ | 261,120 KB |
最終ジャッジ日時 | 2024-11-08 17:41:43 |
合計ジャッジ時間 | 13,288 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 392 ms
140,288 KB |
testcase_01 | AC | 92 ms
77,312 KB |
testcase_02 | AC | 91 ms
77,696 KB |
testcase_03 | AC | 91 ms
77,696 KB |
testcase_04 | AC | 91 ms
77,568 KB |
testcase_05 | AC | 92 ms
77,440 KB |
testcase_06 | AC | 93 ms
77,184 KB |
testcase_07 | AC | 110 ms
79,232 KB |
testcase_08 | AC | 174 ms
82,944 KB |
testcase_09 | AC | 234 ms
86,656 KB |
testcase_10 | AC | 426 ms
140,544 KB |
testcase_11 | AC | 605 ms
261,120 KB |
testcase_12 | AC | 584 ms
220,544 KB |
testcase_13 | AC | 532 ms
220,928 KB |
testcase_14 | AC | 795 ms
157,696 KB |
testcase_15 | AC | 848 ms
170,880 KB |
testcase_16 | AC | 889 ms
187,904 KB |
testcase_17 | AC | 938 ms
194,304 KB |
testcase_18 | AC | 813 ms
162,048 KB |
testcase_19 | AC | 782 ms
177,408 KB |
testcase_20 | AC | 640 ms
139,648 KB |
ソースコード
import sys from collections import deque def dfs(b,h,E,ans,reachable,turn): if reachable[h]: return reachable[h] = True ans[h] = turn for nxt in E[h]: if b == nxt: continue dfs(h,nxt,E,ans,reachable,turn) def solve(): sys.setrecursionlimit(200000) N,M,Q = map(int,raw_input().split()) reachable = [False]*N EL = [[] for i in xrange(N)] ans = [None]*N BEset = [set() for i in xrange(N)] BE = deque() Edge = [map(lambda x: int(x)-1,raw_input().split()) for i in xrange(M)] for i in xrange(Q): ft = map(lambda x: int(x)-1,raw_input().split()) BEset[ft[0]].add(ft[1]) BE.appendleft(ft) for f,t in Edge: if t in BEset[f] or f in BEset[t]: continue EL[f].append(t) EL[t].append(f) dfs(-1,0,EL,ans,reachable,-1) for i,(f,t) in enumerate(BE): EL[f].append(t) EL[t].append(f) if reachable[f] and (not reachable[t]): dfs(f,t,EL,ans,reachable,Q-i) elif reachable[t] and (not reachable[f]): dfs(t,f,EL,ans,reachable,Q-i) for i in xrange(1,N): if reachable[i]: print ans[i] else: print 0 solve()