結果
問題 | No.274 The Wall |
ユーザー | tjake |
提出日時 | 2020-10-18 20:54:31 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,699 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 606,440 KB |
最終ジャッジ日時 | 2024-07-21 06:43:43 |
合計ジャッジ時間 | 7,027 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,736 KB |
testcase_01 | AC | 41 ms
52,480 KB |
testcase_02 | AC | 39 ms
52,404 KB |
testcase_03 | RE | - |
testcase_04 | AC | 39 ms
52,608 KB |
testcase_05 | AC | 39 ms
52,352 KB |
testcase_06 | AC | 38 ms
52,736 KB |
testcase_07 | AC | 39 ms
52,608 KB |
testcase_08 | AC | 39 ms
52,096 KB |
testcase_09 | AC | 39 ms
52,736 KB |
testcase_10 | AC | 38 ms
52,560 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 72 ms
67,584 KB |
testcase_13 | AC | 51 ms
62,080 KB |
testcase_14 | AC | 78 ms
73,600 KB |
testcase_15 | AC | 122 ms
77,440 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 137 ms
77,752 KB |
testcase_20 | AC | 154 ms
78,100 KB |
testcase_21 | AC | 149 ms
78,432 KB |
testcase_22 | AC | 153 ms
77,960 KB |
testcase_23 | AC | 150 ms
77,472 KB |
testcase_24 | AC | 157 ms
78,332 KB |
testcase_25 | AC | 157 ms
78,008 KB |
ソースコード
import sys readline = sys.stdin.readline write = sys.stdout.write def scc(N, G, RG): order = [] used = [0]*N group = [None]*N def dfs(s): used[s] = 1 for t in G[s]: if not used[t]: dfs(t) order.append(s) def rdfs(s, col): group[s] = col used[s] = 1 for t in RG[s]: if not used[t]: rdfs(t, col) for i in range(N): if not used[i]: dfs(i) used = [0]*N label = 0 order.reverse() for s in order: if not used[s]: rdfs(s, label) label += 1 return label, group def solve(): N, M = map(int, readline().split()) S = [tuple(map(int, readline().split())) for i in range(N)] G = [[] for i in range(2*N)] RG = [[] for i in range(2*N)] def add_edge(i, neg_i, j, neg_j): if neg_i: i0 = i+N; i1 = i else: i0 = i; i1 = i+N if neg_j: j0 = j+N; j1 = j else: j0 = j; j1 = j+N G[i1].append(j0); RG[j0].append(i1) G[j1].append(i0); RG[i0].append(j1) for i in range(N): li, ri = S[i] for j in range(i+1, N): lj, rj = S[j] if (li <= rj and lj <= ri): add_edge(i, 0, j, 0) add_edge(i, 1, j, 1) if (li <= M-1-lj and M-1-rj <= ri): add_edge(i, 0, j, 1) add_edge(i, 1, j, 0) label, group = scc(2*N, G, RG) ok = 1 for i in range(N): if group[i] == group[i+N]: ok = 0 break if ok: write("YES\n") else: write("NO\n") solve()