結果

問題 No.2779 Don't make Pair
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-07 22:00:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 4,429 ms
コンパイル使用メモリ 268,324 KB
実行使用メモリ 7,132 KB
最終ジャッジ日時 2024-06-07 22:00:27
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 35 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 42 ms
6,944 KB
testcase_13 AC 45 ms
6,940 KB
testcase_14 AC 30 ms
6,944 KB
testcase_15 AC 71 ms
6,940 KB
testcase_16 AC 76 ms
6,940 KB
testcase_17 AC 54 ms
6,940 KB
testcase_18 AC 43 ms
6,940 KB
testcase_19 AC 60 ms
6,940 KB
testcase_20 AC 28 ms
6,944 KB
testcase_21 AC 97 ms
6,944 KB
testcase_22 AC 96 ms
6,944 KB
testcase_23 AC 107 ms
7,132 KB
testcase_24 AC 95 ms
6,944 KB
testcase_25 AC 96 ms
6,944 KB
testcase_26 AC 95 ms
6,940 KB
testcase_27 AC 98 ms
6,940 KB
testcase_28 AC 96 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

int op(int a, int b) {
    return max(a, b);
}

int e() {
    return 0;
}

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> v = a;
    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());
    int sz = v.size();
    segtree<int, op, e> seg1(sz), seg2(sz);
    for (int i = 0; i < n; i++) {
        int id = lower_bound(v.begin(), v.end(), a[i]) - v.begin();
        int now = seg2.get(id);
        seg2.set(id, now + 1);
    }
    vector<int> ans;
    for (int i = 0; i < n - 1; i++) {
        int id = lower_bound(v.begin(), v.end(), a[i]) - v.begin();
        int now1 = seg1.get(id);
        seg1.set(id, now1 + 1);
        int now2 = seg2.get(id);
        seg2.set(id, now2 - 1);
        if (seg1.all_prod() <= 1 && seg2.all_prod() <= 1) {
            ans.push_back(i + 1);
        }
    }
    cout << ans.size() << endl;
    for (int x : ans) {
        cout << x << " ";
    }
    cout << endl;
}
0