結果

問題 No.465 PPPPPPPPPPPPPPPPAPPPPPPPP
ユーザー りあんりあん
提出日時 2020-11-23 06:28:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,958 ms / 2,000 ms
コード長 1,462 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 303,928 KB
最終ジャッジ日時 2024-07-23 17:19:01
合計ジャッジ時間 13,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,080 KB
testcase_01 AC 40 ms
54,164 KB
testcase_02 AC 40 ms
53,980 KB
testcase_03 AC 38 ms
52,856 KB
testcase_04 AC 39 ms
53,608 KB
testcase_05 AC 141 ms
102,208 KB
testcase_06 AC 402 ms
216,744 KB
testcase_07 AC 193 ms
108,540 KB
testcase_08 AC 515 ms
231,368 KB
testcase_09 AC 598 ms
237,532 KB
testcase_10 AC 592 ms
233,248 KB
testcase_11 AC 1,958 ms
303,928 KB
testcase_12 AC 1,410 ms
272,324 KB
testcase_13 AC 795 ms
234,960 KB
testcase_14 AC 1,220 ms
272,976 KB
testcase_15 AC 492 ms
199,092 KB
testcase_16 AC 476 ms
211,768 KB
testcase_17 AC 466 ms
212,340 KB
testcase_18 AC 595 ms
243,648 KB
testcase_19 AC 474 ms
214,672 KB
testcase_20 AC 477 ms
214,672 KB
testcase_21 AC 811 ms
255,924 KB
32_ratsliveonnoevilstar.txt AC 481 ms
214,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


def pal(s_):
    s = "^" + s_
    n = len(s)
    pl = [[0, 0, 0] for _ in range(n)]
    pl[0][0] = 1
    gpl = [[0, 0, 0] for _ in range(n)]
    g = []
    for j in range(1, n):
        g1 = [(i - 1, d, k) for i, d, k in g if i > 0 and s[i - 1] == s[j]]
        g2 = []
        r = -j
        for i, d, k in g1:
            if i - r != d:
                g2.append((i, i - r, 1))
                if k > 1:
                    g2.append((i + d, d, k - 1))
            else:
                g2.append((i, d, k))
            r = i + (k - 1) * d
        if j > 1 and s[j - 1] == s[j]:
            g2.append((j - 1, j - 1 - r, 1))
            r = j - 1
        g2.append((j, j - r, 1))
        g = []
        for i, d, k in g2:
            if not g or g[-1][1] != d:
                g.append((i, d, k))
            else:
                g[-1] = (g[-1][0], g[-1][1], g[-1][2] + k)
        # pl[j] = 0
        for i, d, k in g:
            r = i + (k - 1) * d
            m = [0, pl[r - 1][0], pl[r - 1][1]]
            if k > 1:
                for l in range(3):
                    m[l] += gpl[i - d][l]
            if d <= i:
                gpl[i - d] = m
            for l in range(3):
                pl[j][l] += m[l]
    return (pl, g)


pl, g = pal(input())
accum = list(itertools.accumulate([i[-1] for i in pl]))
ans = 0
for i, d, k in g:
    for j in range(k):
        if i + d * j > 1:
            ans += accum[i + d * j - 2]

print(ans)
0