結果
問題 | No.1512 作文 |
ユーザー | kamome |
提出日時 | 2021-05-21 23:08:39 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,562 bytes |
コンパイル時間 | 414 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 109,372 KB |
最終ジャッジ日時 | 2024-10-10 10:00:21 |
合計ジャッジ時間 | 6,944 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,608 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 37 ms
52,224 KB |
testcase_03 | AC | 43 ms
52,224 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 76 ms
76,332 KB |
testcase_10 | AC | 79 ms
77,568 KB |
testcase_11 | AC | 75 ms
75,904 KB |
testcase_12 | AC | 84 ms
78,080 KB |
testcase_13 | AC | 78 ms
76,672 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 | 48 ms
60,544 KB |
testcase_22 | AC | 43 ms
58,880 KB |
testcase_23 | AC | 47 ms
61,312 KB |
testcase_24 | AC | 49 ms
61,440 KB |
testcase_25 | AC | 47 ms
61,312 KB |
testcase_26 | AC | 40 ms
52,352 KB |
testcase_27 | AC | 40 ms
52,224 KB |
testcase_28 | AC | 40 ms
51,840 KB |
testcase_29 | AC | 42 ms
52,224 KB |
testcase_30 | AC | 42 ms
52,096 KB |
testcase_31 | AC | 48 ms
59,520 KB |
testcase_32 | AC | 47 ms
59,904 KB |
testcase_33 | AC | 46 ms
59,264 KB |
testcase_34 | AC | 50 ms
62,976 KB |
testcase_35 | AC | 69 ms
88,960 KB |
testcase_36 | AC | 70 ms
88,960 KB |
testcase_37 | AC | 58 ms
77,184 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 582 ms
109,372 KB |
testcase_41 | AC | 417 ms
108,088 KB |
ソースコード
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(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))