結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー tamatotamato
提出日時 2022-01-28 22:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 1,478 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 231,896 KB
最終ジャッジ日時 2024-06-09 15:25:37
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 93 ms
76,800 KB
testcase_04 AC 97 ms
76,288 KB
testcase_05 AC 99 ms
76,288 KB
testcase_06 AC 102 ms
76,288 KB
testcase_07 AC 211 ms
221,380 KB
testcase_08 AC 211 ms
221,228 KB
testcase_09 AC 214 ms
221,148 KB
testcase_10 AC 212 ms
221,280 KB
testcase_11 AC 211 ms
221,272 KB
testcase_12 AC 211 ms
221,272 KB
testcase_13 AC 212 ms
221,148 KB
testcase_14 AC 212 ms
221,152 KB
testcase_15 AC 208 ms
221,144 KB
testcase_16 AC 211 ms
221,136 KB
testcase_17 AC 341 ms
221,328 KB
testcase_18 AC 373 ms
231,772 KB
testcase_19 AC 231 ms
221,532 KB
testcase_20 AC 228 ms
221,792 KB
testcase_21 AC 228 ms
221,152 KB
testcase_22 AC 244 ms
231,896 KB
testcase_23 AC 242 ms
231,896 KB
testcase_24 AC 230 ms
221,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    for _ in range(int(input())):
        N = int(input())
        P = list(map(int, input().split()))

        ans = 2

        idx = {p: i for i, p in enumerate(P)}
        add = 1
        cnt = 0
        for p in range(1, N+1):
            cnt += 1
            i = idx[p]
            if i == 0:
                add -= 1
            else:
                if P[i - 1] < p:
                    cnt -= 1
            if i == N - 1:
                add -= 1
            else:
                if P[i + 1] < p:
                    cnt -= 1
            ans = max(ans, cnt * 2 + add)
        print(ans)


if __name__ == '__main__':
    main()
0