結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー suisensuisen
提出日時 2022-01-28 23:37:08
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-12-30 12:19:18
合計ジャッジ時間 3,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 20 ms
5,248 KB
testcase_05 AC 21 ms
5,248 KB
testcase_06 AC 21 ms
5,248 KB
testcase_07 AC 62 ms
8,960 KB
testcase_08 AC 63 ms
8,960 KB
testcase_09 AC 64 ms
9,088 KB
testcase_10 AC 63 ms
9,088 KB
testcase_11 AC 63 ms
9,088 KB
testcase_12 AC 61 ms
8,960 KB
testcase_13 AC 60 ms
8,960 KB
testcase_14 AC 63 ms
9,088 KB
testcase_15 AC 63 ms
8,960 KB
testcase_16 AC 61 ms
8,960 KB
testcase_17 AC 71 ms
9,088 KB
testcase_18 AC 72 ms
9,088 KB
testcase_19 AC 62 ms
9,088 KB
testcase_20 AC 63 ms
9,088 KB
testcase_21 AC 60 ms
8,960 KB
testcase_22 AC 62 ms
8,960 KB
testcase_23 AC 62 ms
9,088 KB
testcase_24 AC 61 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int t;
    std::cin >> t;
    while (t --> 0) {
        int n;
        std::cin >> n;
        std::vector<int> p(n);
        for (auto &e : p) {
            std::cin >> e;
            --e;
        }
        std::vector<int> q(n), r(n, 1);
        for (int i = 0; i < n; ++i) {
            q[p[i]] = i;
        }
        int sep_num = 0;

        auto update = [&](int i, int v) {
            sep_num -= i > 0     and r[i - 1] != r[i];
            sep_num -= i + 1 < n and r[i + 1] != r[i];
            r[i] = v;
            sep_num += i > 0     and r[i - 1] != r[i];
            sep_num += i + 1 < n and r[i + 1] != r[i];
        };

        int ans = 0;
        for (int i : q) {
            update(i, -1);
            int len = sep_num + 1;
            len -= i > 0     and r[i - 1] == 1;
            len -= i + 1 < n and r[i + 1] == 1;
            ans = std::max(ans, len);
            update(i, 0);
        }
        std::cout << ans << '\n';
    }
    return 0;
}
0