結果

問題 No.1512 作文
ユーザー kamomekamome
提出日時 2021-05-21 23:09:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 1,541 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 109,380 KB
最終ジャッジ日時 2024-10-10 10:00:46
合計ジャッジ時間 7,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 511 ms
93,892 KB
testcase_05 AC 500 ms
93,696 KB
testcase_06 AC 508 ms
93,440 KB
testcase_07 AC 502 ms
93,440 KB
testcase_08 AC 508 ms
94,480 KB
testcase_09 AC 78 ms
76,720 KB
testcase_10 AC 80 ms
77,748 KB
testcase_11 AC 77 ms
75,904 KB
testcase_12 AC 80 ms
78,080 KB
testcase_13 AC 77 ms
76,672 KB
testcase_14 AC 149 ms
77,696 KB
testcase_15 AC 148 ms
77,312 KB
testcase_16 AC 147 ms
77,056 KB
testcase_17 AC 152 ms
77,184 KB
testcase_18 AC 146 ms
77,280 KB
testcase_19 AC 148 ms
77,056 KB
testcase_20 AC 147 ms
77,568 KB
testcase_21 AC 47 ms
59,904 KB
testcase_22 AC 46 ms
59,008 KB
testcase_23 AC 48 ms
61,568 KB
testcase_24 AC 48 ms
61,440 KB
testcase_25 AC 49 ms
61,568 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 40 ms
52,352 KB
testcase_28 AC 40 ms
52,480 KB
testcase_29 AC 39 ms
52,480 KB
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 46 ms
59,904 KB
testcase_32 AC 47 ms
59,904 KB
testcase_33 AC 45 ms
59,648 KB
testcase_34 AC 52 ms
63,232 KB
testcase_35 AC 67 ms
89,216 KB
testcase_36 AC 67 ms
88,704 KB
testcase_37 AC 58 ms
76,928 KB
testcase_38 AC 69 ms
76,544 KB
testcase_39 AC 80 ms
77,392 KB
testcase_40 AC 651 ms
109,380 KB
testcase_41 AC 396 ms
108,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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()
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