結果

問題 No.1013 〇マス進む
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-20 23:09:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 984 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 168,432 KB
最終ジャッジ日時 2024-12-15 09:13:52
合計ジャッジ時間 91,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,752 KB
testcase_01 AC 36 ms
141,780 KB
testcase_02 AC 36 ms
59,432 KB
testcase_03 AC 52 ms
74,564 KB
testcase_04 AC 45 ms
69,784 KB
testcase_05 AC 55 ms
68,836 KB
testcase_06 AC 52 ms
73,036 KB
testcase_07 AC 56 ms
159,360 KB
testcase_08 AC 57 ms
76,164 KB
testcase_09 AC 58 ms
162,144 KB
testcase_10 AC 58 ms
76,436 KB
testcase_11 AC 52 ms
151,700 KB
testcase_12 AC 60 ms
77,464 KB
testcase_13 AC 131 ms
161,452 KB
testcase_14 AC 1,076 ms
90,156 KB
testcase_15 TLE -
testcase_16 AC 1,867 ms
92,804 KB
testcase_17 AC 1,944 ms
167,672 KB
testcase_18 AC 1,889 ms
90,412 KB
testcase_19 AC 587 ms
167,520 KB
testcase_20 TLE -
testcase_21 AC 826 ms
168,432 KB
testcase_22 TLE -
testcase_23 AC 529 ms
164,292 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 487 ms
84,844 KB
testcase_27 AC 922 ms
80,956 KB
testcase_28 AC 372 ms
77,544 KB
testcase_29 TLE -
testcase_30 AC 895 ms
80,268 KB
testcase_31 TLE -
testcase_32 AC 1,169 ms
82,960 KB
testcase_33 AC 1,162 ms
82,972 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 153 ms
76,772 KB
testcase_37 AC 94 ms
76,720 KB
testcase_38 TLE -
testcase_39 AC 761 ms
79,164 KB
testcase_40 TLE -
testcase_41 AC 349 ms
77,180 KB
testcase_42 AC 1,343 ms
82,228 KB
testcase_43 AC 1,178 ms
79,200 KB
testcase_44 AC 1,218 ms
82,648 KB
testcase_45 AC 971 ms
81,664 KB
testcase_46 AC 396 ms
77,444 KB
testcase_47 AC 1,223 ms
81,920 KB
testcase_48 AC 1,663 ms
83,448 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 207 ms
77,136 KB
testcase_53 AC 264 ms
77,508 KB
testcase_54 TLE -
testcase_55 AC 463 ms
78,144 KB
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 33 ms
53,424 KB
testcase_64 AC 33 ms
143,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
P = list(map(int, input().split()))
d = [0]*N
for i in range(N):
    d[i] = (P[i]+i) % N

#print(d)
#vs = set()
rs = [0] * N
for i in range(N):
#    if i in vs:
#        continue
    pvs = set([i])
    path = []
    lps = []
    lpc = 0
    v = i
    while 1:
        path.append(v)
        lps.append(lpc)
        u = d[v]
        if u <= v:
            lpc += 1
        if u in pvs:
            j = path.index(u)
            ss = len(path) - j
            lpp = lpc - lps[j]
            break
#        if u in vs:
#            break
#        vs.add(u)
        pvs.add(u)
        v = u
    for i in range(len(path)):
        if K+i >= j:
            x = path[(K-j+i)%ss + j]
            lp = lps[(K-j+i)%ss + j] + ((K-j+i)//ss)*lpp - lps[i]
        else:
            x = path[K+i]
            lp = lps[K+i] - lps[i]
        rs[path[i]] = x+1 + lp*N
#        print(path[i], x+1, lp*N)
#    print(i, j, ss, path)
for i in range(N):
    print(rs[i])



0