結果
問題 | No.1328 alligachi-problem |
ユーザー | tktk_snsn |
提出日時 | 2020-12-25 16:55:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,442 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 100,768 KB |
最終ジャッジ日時 | 2024-09-22 09:32:47 |
合計ジャッジ時間 | 4,719 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,824 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,880 KB |
testcase_04 | AC | 39 ms
11,776 KB |
testcase_05 | AC | 58 ms
11,776 KB |
testcase_06 | AC | 35 ms
11,520 KB |
testcase_07 | AC | 44 ms
11,904 KB |
testcase_08 | AC | 32 ms
11,008 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
from functools import lru_cache import sys input = sys.stdin.readline sys.setrecursionlimit(10 ** 7) N = int(input()) red_red = [[] for _ in range(N + 1)] red_blue = [[] for _ in range(N + 1)] blue_blue = [[] for _ in range(N + 1)] blue_red = [[] for _ in range(N + 1)] for i in range(1, N+1): c, x, y = input().rstrip().split() y = int(y) if c == "R": if x == "R": red_red[y].append(i) else: red_blue[y].append(i) else: if x == "R": blue_red[y].append(i) else: blue_blue[y].append(i) ans = [] def rec(R, B, now): if R + B == N: ans.append(now) return True if red_red[R]: x = red_red[R].pop() if rec(R + 1, B, x): ans.append(now) return True red_red[R].append(x) if red_blue[B]: x = red_blue[B].pop() if rec(R + 1, B, x): ans.append(now) return True red_blue[B].append(x) if blue_red[R]: x = blue_red[R].pop() if rec(R, B + 1, x): ans.append(now) return True blue_red[R].append(x) if blue_blue[B]: x = blue_blue[B].pop() if rec(R, B + 1, x): ans.append(now) return True blue_blue[B].append(x) return False if not rec(0, 0, 0): print("No") else: print("Yes") ans.pop() print(*ans[::-1])