結果

問題 No.2779 Don't make Pair
ユーザー ooaiuooaiu
提出日時 2024-07-04 00:40:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 3,331 ms
コンパイル使用メモリ 260,348 KB
実行使用メモリ 16,824 KB
最終ジャッジ日時 2024-07-04 00:40:17
合計ジャッジ時間 7,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 60 ms
9,344 KB
testcase_13 AC 63 ms
9,856 KB
testcase_14 AC 51 ms
7,424 KB
testcase_15 AC 145 ms
13,312 KB
testcase_16 AC 120 ms
13,952 KB
testcase_17 AC 74 ms
10,624 KB
testcase_18 AC 58 ms
8,832 KB
testcase_19 AC 103 ms
11,648 KB
testcase_20 AC 38 ms
7,296 KB
testcase_21 AC 174 ms
16,512 KB
testcase_22 AC 173 ms
16,512 KB
testcase_23 AC 163 ms
16,824 KB
testcase_24 AC 188 ms
16,384 KB
testcase_25 AC 165 ms
16,512 KB
testcase_26 AC 162 ms
16,512 KB
testcase_27 AC 179 ms
16,512 KB
testcase_28 AC 160 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#ifdef LOCAL
#include <algo/debug.h>
#else
#define debug(...) void(0)
#endif

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll N; cin >> N;
    vector<ll> A(N); for(int i = 0; i < N; i++) cin >> A[i];
    map<ll, ll> MP1, MP2; for(int i = 0; i < N; i++) MP2[A[i]]++;
    set<ll> S1, S2;
    for(auto&&[a, b]: MP2) {
        if(b >= 2) {
            S2.emplace(a);
        }
    }
    vector<int> ans;
    for(int i = 0; i < N - 1; i++) {
        MP2[A[i]]--; MP1[A[i]]++;
        if(MP2[A[i]] <= 1) S2.erase(A[i]);
        if(MP1[A[i]] >= 2) S1.emplace(A[i]);
        if(S1.empty() && S2.empty()) {
            ans.push_back(i + 1);
        }
    }
    cout << int(ans.size()) << endl;
    for(auto&&a : ans) {
        cout << a << " ";
    }cout << endl;
}
0