結果

問題 No.778 クリスマスツリー
ユーザー silversmithsilversmith
提出日時 2019-05-02 01:12:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 1,090 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 156,940 KB
最終ジャッジ日時 2024-12-31 12:50:44
合計ジャッジ時間 15,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 34 ms
10,880 KB
testcase_06 RE -
testcase_07 AC 821 ms
60,932 KB
testcase_08 RE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,273 ms
89,708 KB
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Node:
    def __init__(self):
        #self.parent_Node = None
        self.child_Node = []
        self.flag = False
        self.fix = False
        self.all_child = []

    def fix_all_child(self):
        if self.fix:
            return self.all_child
        self.all_child = self.child_Node.copy()
        for node in self.child_Node:
            self.all_child.extend(node.fix_all_child())
        self.fix = True
        return self.all_child
         

class tree:
    def __init__(self, Nodes):
        self.Nodes = Nodes
    def push_edge(self,low, upper):
        self.Nodes[upper].child_Node.append(self.Nodes[low])
        #self.Nodes[low].parent_Node = self.Nodes[upper]
    
    def fix_all_child(self, Node_idx):
        self.Nodes[Node_idx].fix_all_child()

N = int(input())
A = map(int, input().split())

t = tree([Node() for i in range(N)])
for idx, a in enumerate(A):
    t.push_edge(idx + 1, a)
t.fix_all_child(0)
num = 0
for i in range(N-1, -1, -1):
    num+=sum([1 if node.flag else 0 for node in t.Nodes[i].all_child])
    t.Nodes[i].flag = True

print(num)
0