結果

問題 No.2779 Don't make Pair
ユーザー ooaiuooaiu
提出日時 2024-07-04 00:44:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 3,153 ms
コンパイル使用メモリ 256,888 KB
実行使用メモリ 16,692 KB
最終ジャッジ日時 2024-07-04 00:44:38
合計ジャッジ時間 6,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 63 ms
9,216 KB
testcase_13 AC 68 ms
9,856 KB
testcase_14 AC 40 ms
7,424 KB
testcase_15 AC 118 ms
13,312 KB
testcase_16 AC 127 ms
13,952 KB
testcase_17 AC 82 ms
10,624 KB
testcase_18 AC 58 ms
8,960 KB
testcase_19 AC 89 ms
11,648 KB
testcase_20 AC 38 ms
7,340 KB
testcase_21 AC 159 ms
16,384 KB
testcase_22 AC 163 ms
16,512 KB
testcase_23 AC 173 ms
16,692 KB
testcase_24 AC 162 ms
16,512 KB
testcase_25 AC 163 ms
16,512 KB
testcase_26 AC 163 ms
16,512 KB
testcase_27 AC 167 ms
16,512 KB
testcase_28 AC 162 ms
16,512 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]]++;
    int s1 = 0, s2 = 0;
    for(auto&&[a, b]: MP2) {
        if(b >= 2) {
            s2++;
        }
    }
    vector<int> ans;
    for(int i = 0; i < N - 1; i++) {
        MP2[A[i]]--; MP1[A[i]]++;
        if(MP2[A[i]] == 1) s2--;
        if(MP1[A[i]] == 2) s1++;
        if(s1 == 0 && s2 == 0) {
            ans.push_back(i + 1);
        }
    }
    cout << int(ans.size()) << endl;
    for(auto&&a : ans) {
        cout << a << " ";
    }cout << endl;
}
0