結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー ShirotsumeShirotsume
提出日時 2024-07-26 23:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,019 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 295,612 KB
最終ジャッジ日時 2024-07-26 23:41:44
合計ジャッジ時間 9,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,744 KB
testcase_01 AC 43 ms
56,320 KB
testcase_02 AC 43 ms
55,916 KB
testcase_03 AC 44 ms
56,120 KB
testcase_04 AC 988 ms
256,412 KB
testcase_05 AC 653 ms
203,352 KB
testcase_06 AC 1,019 ms
295,612 KB
testcase_07 AC 189 ms
91,344 KB
testcase_08 AC 128 ms
87,552 KB
testcase_09 AC 171 ms
90,324 KB
testcase_10 AC 70 ms
74,908 KB
testcase_11 AC 55 ms
65,844 KB
testcase_12 AC 64 ms
71,940 KB
testcase_13 AC 44 ms
57,432 KB
testcase_14 AC 47 ms
57,628 KB
testcase_15 AC 46 ms
56,692 KB
testcase_16 AC 47 ms
56,668 KB
testcase_17 AC 43 ms
56,756 KB
testcase_18 AC 43 ms
56,244 KB
testcase_19 AC 44 ms
56,796 KB
testcase_20 AC 42 ms
56,876 KB
testcase_21 AC 43 ms
56,876 KB
testcase_22 AC 43 ms
56,560 KB
testcase_23 AC 43 ms
56,636 KB
testcase_24 AC 45 ms
56,556 KB
testcase_25 AC 44 ms
56,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
sys.setrecursionlimit(2 * 10 ** 5 + 1)
n = ii()
graph = [[] for _ in range(n)]
for i in range(n):
    a, b, c, d = input().split()
    if a != 'H':
        a = int(a) - 1
        graph[i].append(a)
    if b != 'H':
        b = int(b) - 1
        graph[i].append(b)
    if c != 'H':
        c = int(c) - 1
        graph[i].append(c)
    if d != 'H':
        d = int(d) - 1
        graph[i].append(d)
        
from collections import deque
def TreeDepth(s, graph):
    inf = 2 ** 61 - 1
    n = len(graph)
    depth = [inf] * n
    depth[s] = 0
    q = deque()
    q.append(s)
    while q:
        now = q.popleft()
        for to in graph[now]:
            if depth[to] == inf:
                depth[to] = depth[now] + 1
                q.append(to)
    return depth

TD = TreeDepth(0, graph)
h = {}
cnt = 0
ans = []

def dfs(now):
    global ans
    for to in graph[now]:
        if TD[to] > TD[now]:
            ans.append('(')
            dfs(to)
            ans.append('methyl)')
dfs(0)
print(''.join(ans) + 'methane')   
0