結果

問題 No.1512 作文
ユーザー kamomekamome
提出日時 2021-05-21 21:46:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,582 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 115,172 KB
最終ジャッジ日時 2024-10-10 08:17:55
合計ジャッジ時間 10,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,472 KB
testcase_02 WA -
testcase_03 AC 36 ms
53,748 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 76 ms
76,364 KB
testcase_10 AC 74 ms
77,736 KB
testcase_11 AC 73 ms
76,252 KB
testcase_12 AC 75 ms
77,988 KB
testcase_13 AC 73 ms
76,260 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 47 ms
60,672 KB
testcase_22 AC 43 ms
60,912 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 45 ms
61,716 KB
testcase_26 AC 36 ms
53,720 KB
testcase_27 AC 37 ms
52,564 KB
testcase_28 AC 36 ms
53,248 KB
testcase_29 AC 36 ms
54,204 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 63 ms
90,820 KB
testcase_36 AC 63 ms
90,296 KB
testcase_37 AC 55 ms
78,616 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 RE -
testcase_41 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def segfunc(x, y):
    return max(x, y)


ide_ele = 0


class SegTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] += x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res

    def get(self, k):
        return self.query(k, k+1)


N = int(input())
S = []
for i in range(N):
    s = list(map(lambda x: ord(x)-ord("a"), list(input())))
    t = sorted(s)
    if all(s[j] == t[j] for j in range(len(s))):
        S.append(s)
S.sort(key=lambda x: x[-1])
dp = SegTree([0]*26, segfunc, 0)

for i in range(len(S)):
    s = S[i][0]
    t = S[i][-1]
    n = len(S[i])
    dp.update(t, max(dp.query(0, s+1)+n, dp.get(t)))

print(dp.query(0, 27))
0