結果
問題 | No.274 The Wall |
ユーザー | yaoshimax |
提出日時 | 2016-05-11 23:32:40 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,183 bytes |
コンパイル時間 | 58 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-10-05 13:51:02 |
合計ジャッジ時間 | 16,555 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 11 ms
6,816 KB |
testcase_02 | AC | 12 ms
6,820 KB |
testcase_03 | AC | 13 ms
6,820 KB |
testcase_04 | AC | 9 ms
6,816 KB |
testcase_05 | AC | 10 ms
6,816 KB |
testcase_06 | AC | 10 ms
6,820 KB |
testcase_07 | AC | 9 ms
6,816 KB |
testcase_08 | AC | 9 ms
6,816 KB |
testcase_09 | AC | 10 ms
6,816 KB |
testcase_10 | AC | 15 ms
6,820 KB |
testcase_11 | AC | 20 ms
7,040 KB |
testcase_12 | AC | 1,315 ms
6,912 KB |
testcase_13 | AC | 97 ms
6,816 KB |
testcase_14 | AC | 641 ms
6,816 KB |
testcase_15 | AC | 1,295 ms
6,820 KB |
testcase_16 | AC | 17 ms
6,912 KB |
testcase_17 | AC | 17 ms
6,820 KB |
testcase_18 | AC | 18 ms
6,912 KB |
testcase_19 | AC | 1,953 ms
6,816 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 100 ms
6,820 KB |
testcase_23 | AC | 440 ms
6,912 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
ソースコード
N,M=map(int,raw_input().split()) lines=[] blocked=[False for i in range(M)] used=[False for i in range(N)] for i in range(N): L,R=map(int,raw_input().split()) lines.append(((L,R),(M-R-1,M-L-1))) useCnt=0 while useCnt < N: toCheck=[] for i in range(N): if used[i]==False: toCheck.append((i,0)) used[i]=True break while len(toCheck)!=0: p,q=toCheck[0] toCheck.pop(0) l,r=lines[p][q] useCnt+=1 for c in range(l,r+1): if blocked[c]==True: print "NO" exit() blocked[c]=True for t in range(N): if used[t]==False: if lines[t][0][0]<=c and lines[t][0][1]>=c and lines[t][1][0]<=c and lines[t][1][1]>=c: print "NO" exit() elif lines[t][0][0]<=c and lines[t][0][1]>=c : toCheck.append((t,1)) used[t]=True elif lines[t][1][0]<=c and lines[t][1][1]>=c : toCheck.append((t,0)) used[t]=True print "YES"