結果

問題 No.274 The Wall
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-11 23:33:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 79,884 KB
最終ジャッジ日時 2024-06-22 02:09:11
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,412 KB
testcase_01 AC 88 ms
77,376 KB
testcase_02 AC 86 ms
77,588 KB
testcase_03 AC 100 ms
78,856 KB
testcase_04 AC 76 ms
75,448 KB
testcase_05 AC 75 ms
75,436 KB
testcase_06 AC 73 ms
75,532 KB
testcase_07 AC 72 ms
75,780 KB
testcase_08 AC 71 ms
75,784 KB
testcase_09 AC 73 ms
75,800 KB
testcase_10 AC 81 ms
77,704 KB
testcase_11 AC 102 ms
78,740 KB
testcase_12 AC 159 ms
79,392 KB
testcase_13 AC 107 ms
78,212 KB
testcase_14 AC 159 ms
79,400 KB
testcase_15 AC 216 ms
79,624 KB
testcase_16 AC 100 ms
78,728 KB
testcase_17 AC 102 ms
78,500 KB
testcase_18 AC 103 ms
78,624 KB
testcase_19 AC 257 ms
79,664 KB
testcase_20 AC 278 ms
79,760 KB
testcase_21 AC 282 ms
79,776 KB
testcase_22 AC 140 ms
79,540 KB
testcase_23 AC 154 ms
79,648 KB
testcase_24 AC 295 ms
79,788 KB
testcase_25 AC 290 ms
79,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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"

0