結果

問題 No.1804 Intersection of LIS
ユーザー 道柒道柒
提出日時 2025-01-01 16:18:22
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,524 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 250,860 KB
実行使用メモリ 11,288 KB
最終ジャッジ日時 2025-01-01 16:18:30
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 70 ms
7,936 KB
testcase_04 AC 74 ms
7,936 KB
testcase_05 AC 70 ms
7,936 KB
testcase_06 AC 70 ms
7,936 KB
testcase_07 AC 70 ms
7,936 KB
testcase_08 AC 71 ms
7,936 KB
testcase_09 AC 70 ms
7,808 KB
testcase_10 AC 70 ms
7,808 KB
testcase_11 AC 68 ms
7,936 KB
testcase_12 AC 70 ms
7,936 KB
testcase_13 AC 70 ms
7,936 KB
testcase_14 AC 70 ms
7,936 KB
testcase_15 AC 69 ms
7,936 KB
testcase_16 AC 70 ms
7,936 KB
testcase_17 AC 70 ms
7,936 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 59 ms
11,288 KB
testcase_36 AC 60 ms
11,064 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using i64 = long long;
using l64 = long double;

void DAOQI() {
    int n;
    std::cin >> n;
    std::vector<int> a(n + 1);
    for (int i = 1; i <= n; i++) {
        std::cin >> a[i];
    }

    std::vector<int> pre(n + 1), suf(n + 1), cnt(n + 1);
    auto calc = [&](std::vector<int> &vec) {
        std::vector<int> dp;
        for (int i = 1; i <= n; i++) {
            if (dp.empty() || a[i] > dp.back()) {
                dp.push_back(a[i]);
                vec[i] = dp.size();
            } else {
                int p = std::lower_bound(dp.begin(), dp.end(), a[i]) - dp.begin();
                vec[i] = p + 1;
                dp[p] = a[i];
            }
        }
        return dp.size();
    };
    int len = calc(pre);
    std::reverse(a.begin() + 1, a.end());
    for (int i = 1; i <= n; i++) a[i] = -a[i];
    calc(suf);
    std::reverse(suf.begin() + 1, suf.end());
    std::reverse(a.begin() + 1, a.end());
    std::vector<int> ans;
    for (int i = 1; i <= n; i++) {
        a[i] = -a[i];
        if (pre[i] + suf[i] - 1 == len) {
            cnt[pre[i]]++;
        }
    }
    for (int i = 1; i <= n; i++) {
        if (pre[i] + suf[i] - 1 == len && cnt[pre[i]] == 1) {
            ans.push_back(a[i]);
        }
    }
    std::cout << ans.size() << "\n";
    for (int x: ans) std::cout << x << " \n"[x == ans.back()];
}

signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T = 1;
    //std::cin >> T;
    while (T--) DAOQI();
    return 0;
}
0