結果

問題 No.2929 Miracle Branch
ユーザー Yakumo221Yakumo221
提出日時 2024-10-12 15:45:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,716 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-10-12 15:46:10
合計ジャッジ時間 4,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,008 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 47 ms
59,008 KB
testcase_03 TLE -
testcase_04 -- -
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 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# from math import isqrt
# from functools import cache
from collections import defaultdict
import sys
sys.setrecursionlimit(10 ** 5)

def isqrt(n):
    ok = 0
    ng = 1 << 60
    while abs(ok-ng) > 1:
        mid = (ok+ng)//2
        if pow(mid,2) <= n:
            ok = mid
        else:
            ng = mid
    return mid

# @cache
def yakusu_rekkyo(n):
    if n in dic:
        return dic[n]
    
    low = []
    up = []
    for i in range(1, isqrt(n)+1):
        if n % i == 0:
            low.append(i)
            if n//i != i:
                up.append(n//i)
    ret = low + up[::-1]
    dic[n] = ret
    return ret

x = int(input())
if x == 1:
    print(2)
    print(1,2)
    print("b","g")
    exit()


dic = defaultdict(list)

ans_tot = [200001]
ans_bro = [0]
ans_gre = [[]]

tot = [0]
bro = [0]
gre = []

def func(x):
    if x == 1:
        if ans_tot[0] > tot[0]:
            # print(tot, bro, gre)
            ans_tot[0] = tot[0]
            ans_bro[0] = bro[0]
            ans_gre[0] = gre[:]
        
        return
    
    yakusu = yakusu_rekkyo(x)
    for y in yakusu:
        if y == 1:
            continue

        tot[0] += y+1
        bro[0] += 1
        gre.append(y)
        func(x//y)
        tot[0] -= y+1
        bro[0] -= 1
        gre.pop()

func(x)
ans_tot = ans_tot[0]
ans_bro = ans_bro[0]
ans_gre = ans_gre[0]
# print(ans_tot)
# print(ans_bro)
# print(ans_gre)

if ans_tot == 200001:
    print(-1)
    exit()


print(ans_tot)
for i in range(ans_bro-1):
    print(i+1, i+2)

cnt = ans_bro+1
for i in range(ans_bro):
    for j in range(ans_gre[i]):
        print(i+1, cnt)
        cnt += 1

col = ["g" for i in range(ans_tot)]
for i in range(ans_bro):
    col[i] = "b"

print(*col)
0