結果

問題 No.1880 Many Ways
ユーザー shotoyooshotoyoo
提出日時 2022-03-18 22:26:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,375 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 68,064 KB
最終ジャッジ日時 2024-10-03 07:17:45
合計ジャッジ時間 13,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO)
LI = lambda : list(map(int, input().split()))
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]
sys.setrecursionlimit(3*10**5+10)

N = int(input())
def main(N):
    s = 0
    m = 40
    t = 3*m+1
    uv = []
    p = [0]
    for i in range(m):
        c = [3*i+1, 3*i+2, 3*i+3]
        for u in p[:2]:
            for v in c[:2]:
                uv.append((u,v))
        if i>0:
            uv.append((p[-1], c[-1]))
        p = c
    uv.append((3*m,t))
    for i in range(40):
        if N>>i&1:
            if i+1<m:
                uv.append((3*(i)+2, 3*(i+1)+3))
            else:
                uv.append((3*i+2, t))
    def check():
        n = 3*m+2
        dp = [0]*n
        ns = [[] for _ in range(n)]
        for u,v in uv:
            if u>v:
                u,v = v,u
            ns[v].append(u)
        dp[0] = 1
        for u in range(n):
            for v in ns[u]:
                dp[u] += dp[v]
        assert dp[n-1]==N
    check()
    return uv
uv = main(N)
print(3*m+2, len(uv))
for u,v in uv:
    print(u+1,v+1)
0