結果
問題 | No.2820 Non-Preferred IUPAC Nomenclature |
ユーザー | naut3 |
提出日時 | 2024-07-26 22:42:37 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 921 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 82,520 KB |
実行使用メモリ | 849,400 KB |
最終ジャッジ日時 | 2024-07-26 22:42:42 |
合計ジャッジ時間 | 3,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,340 KB |
testcase_01 | AC | 42 ms
54,072 KB |
testcase_02 | AC | 41 ms
55,180 KB |
testcase_03 | AC | 41 ms
54,656 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
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 | -- | - |
ソースコード
from collections import deque def main(): N = int(input()) graph = [[] for _ in range(N)] for i in range(N): C = list(input().split()) for s in C: if s != 'H': s = int(s) graph[i].append(s - 1) state = ["methyl" for _ in range(N)] seen = [False for _ in range(N)] dist = [0 for _ in range(N)] q = deque() q.append(0) seen[0] = True while q: v = q.pop() for nxt in graph[v]: if seen[nxt]: continue seen[nxt] = True dist[nxt] = dist[v] + 1 q.appendleft(nxt) ord = [i for i in range(N)] ord.sort(key=lambda x: -dist[x]) for v in ord: for nxt in graph[v]: if dist[nxt] > dist[v]: state[v] = "(" + state[nxt] + ")" + state[v] print(state[0][:-6] + "methane") return 0 main()