結果

問題 No.2820 Non-Preferred IUPAC Nomenclature
ユーザー titiatitia
提出日時 2024-07-27 05:35:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,470 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 844,896 KB
最終ジャッジ日時 2024-07-27 05:35:39
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,588 KB
testcase_01 AC 37 ms
53,484 KB
testcase_02 AC 36 ms
53,080 KB
testcase_03 AC 37 ms
53,664 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

N=int(input())
C=[input().split() for i in range(N)]

E=[[] for i in range(N)]


for i in range(N):
    for j in range(4):
        if C[i][j]=="H":
            continue
        x=int(C[i][j])-1
        E[i].append(x)
        
# 木のHL分解+LCA

ROOT=0

QUE=[ROOT] 
Parent=[-1]*N
Parent[ROOT]=N # ROOTの親を定めておく.
Child=[[] for i in range(N)]
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            Child[x].append(to)
            QUE.append(to)

Children=[1]*N

for x in TOP_SORT[::-1]: #(自分を含む)子ノードの数を調べる
    if x==ROOT:
        break
    Children[Parent[x]]+=Children[x]

DP=[[] for i in range(N)]

for x in TOP_SORT[::-1]:
    #print(DP)
    if Child[x]==[]:
        DP[x]=["(methyl)"]
    else:
        LIST=[]
        for c in Child[x]:
            LIST.append((Children[c],c))

        LIST.sort(key=itemgetter(0),reverse=True)

        NOW=["("]
        for _,c in LIST:
            if NOW==[]:
                NOW=DP[c]
                NOW[0]="("+NOW[0]
            else:
                NOW+=DP[c]

        NOW.append("methyl")
        NOW.append(")")

        DP[x]=NOW

ANS=DP[0][1:]
ANS.pop()
ANS[-1]="methane"

print("".join(ANS))

        
            
0