From 77eb4765befb3945d68d7bcee57c4486a00ac921 Mon Sep 17 00:00:00 2001 From: unlockable Date: Mon, 6 Nov 2023 17:25:25 +0800 Subject: [PATCH] Use long long. --- 2023204/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/2023204/main.cpp b/2023204/main.cpp index 5930beb..b683d78 100644 --- a/2023204/main.cpp +++ b/2023204/main.cpp @@ -4,8 +4,7 @@ // 'Natural count' is the name of the node when all the nodes in the tree is // alive. xxx_num denotes the count as the question described. -// SEE ALSO: -// branch 04_02 has a correct and more elegant implementation. +// SEE ALSO BRANCH 04_02 WITH A CORRECT IMPLEMENTATION int ans[200] = {0}; long long dead_nodes_num[105] = {0};