Submission #6919755


Source Code Expand

from collections import defaultdict
import sys
sys.setrecursionlimit(10**7)


n = int(input())
edge = defaultdict(list)
for i in range(n):
    a, b = map(int, input().split())
    edge[a].append(b)
    edge[b].append(a)

def dfs(now, prev, visited = []):
    if now in visited:
        print_ans(len(visited) - visited.index(now))
        exit()
    else:
        for e in edge[now]:
            if e == prev:
                continue
            visited.append(now)
            ret = dfs(e, now, visited)
            visited.pop()
    return

def print_ans(length):
    ans_min = 1
    ans_max = n
    if length == n:
        ans_min = 2
        
    if length % 2 == 1:
        ans_max = n-1
        
    print(str(ans_min) + ' ' + str(ans_max))
    
dfs(1, 1)

Submission Info

Submission Time
Task C - 最小カットと最大カット
User tsb2b
Language PyPy3 (2.4.0)
Score 0
Code Size 800 Byte
Status TLE
Exec Time 2110 ms
Memory 114264 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 26
TLE × 3
Set Name Test Cases
All scrambled_00.txt, scrambled_01.txt, scrambled_02.txt, scrambled_03.txt, scrambled_04.txt, scrambled_05.txt, scrambled_06.txt, scrambled_07.txt, scrambled_08.txt, scrambled_09.txt, scrambled_10.txt, scrambled_11.txt, scrambled_12.txt, scrambled_13.txt, scrambled_14.txt, scrambled_15.txt, scrambled_16.txt, scrambled_17.txt, scrambled_18.txt, scrambled_19.txt, scrambled_20.txt, scrambled_21.txt, scrambled_22.txt, scrambled_23.txt, scrambled_24.txt, scrambled_25.txt, scrambled_26.txt, scrambled_27.txt, scrambled_28.txt
Case Name Status Exec Time Memory
scrambled_00.txt AC 163 ms 38256 KB
scrambled_01.txt AC 162 ms 38256 KB
scrambled_02.txt AC 163 ms 38256 KB
scrambled_03.txt TLE 2110 ms 113880 KB
scrambled_04.txt TLE 2110 ms 114136 KB
scrambled_05.txt AC 1935 ms 104280 KB
scrambled_06.txt AC 992 ms 84056 KB
scrambled_07.txt TLE 2110 ms 114264 KB
scrambled_08.txt AC 770 ms 76632 KB
scrambled_09.txt AC 1055 ms 85848 KB
scrambled_10.txt AC 639 ms 71352 KB
scrambled_11.txt AC 413 ms 54104 KB
scrambled_12.txt AC 557 ms 61528 KB
scrambled_13.txt AC 557 ms 61272 KB
scrambled_14.txt AC 842 ms 79832 KB
scrambled_15.txt AC 620 ms 62424 KB
scrambled_16.txt AC 454 ms 56664 KB
scrambled_17.txt AC 427 ms 56152 KB
scrambled_18.txt AC 710 ms 69720 KB
scrambled_19.txt AC 322 ms 50136 KB
scrambled_20.txt AC 600 ms 64784 KB
scrambled_21.txt AC 429 ms 55128 KB
scrambled_22.txt AC 576 ms 60248 KB
scrambled_23.txt AC 460 ms 57176 KB
scrambled_24.txt AC 445 ms 56792 KB
scrambled_25.txt AC 479 ms 58200 KB
scrambled_26.txt AC 456 ms 57560 KB
scrambled_27.txt AC 544 ms 59224 KB
scrambled_28.txt AC 530 ms 58328 KB