結果

問題 No.3 ビットすごろく
ユーザー momike1341momike1341
提出日時 2020-03-26 21:27:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 955 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-01 09:43:53
合計ジャッジ時間 13,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 94 ms
11,264 KB
testcase_04 AC 38 ms
10,880 KB
testcase_05 AC 303 ms
11,776 KB
testcase_06 AC 107 ms
11,264 KB
testcase_07 AC 58 ms
11,008 KB
testcase_08 AC 208 ms
11,776 KB
testcase_09 AC 478 ms
12,160 KB
testcase_10 AC 664 ms
12,288 KB
testcase_11 AC 409 ms
12,288 KB
testcase_12 AC 290 ms
11,776 KB
testcase_13 AC 77 ms
11,136 KB
testcase_14 AC 625 ms
12,544 KB
testcase_15 AC 932 ms
12,544 KB
testcase_16 AC 816 ms
12,416 KB
testcase_17 AC 904 ms
12,672 KB
testcase_18 AC 66 ms
11,136 KB
testcase_19 AC 955 ms
12,544 KB
testcase_20 AC 35 ms
10,880 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 641 ms
12,416 KB
testcase_23 AC 955 ms
12,672 KB
testcase_24 AC 953 ms
12,672 KB
testcase_25 AC 938 ms
12,800 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 86 ms
11,136 KB
testcase_28 AC 782 ms
12,536 KB
testcase_29 AC 423 ms
12,160 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 366 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def can_go(n):
    return sum(map(int,list(n)))

N=int(input())

m=dict(zip(range(1,N+1),list(map(format,range(1,N+1),N*"b"))))
queue=[1]
Visited=[]#訪問済み
cost=[float("inf") for i in range(N)]
cost[0]=1
next_target=[]
goal=N

##print(m,goal)

while(1):
    if len(queue)==0:
        break
    target=queue[0]
    if target==goal:
        break
    next_target=[target+can_go(m[target]),target-can_go(m[target])]
    for i in next_target:
        if 1<=i and i<=N and not i in queue and not i in Visited:
            queue.append(i)
            cost[i-1]=cost[target-1]+1 
            
    queue.pop(0)
    Visited.append(target)
##    print(queue,cost)

if cost[-1]!=float("inf"):
    print(cost[N-1])
else :
    print(-1)
0