結果

問題 No.2779 Don't make Pair
ユーザー やまひろやまひろ
提出日時 2024-06-19 02:11:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 4,982 ms
コンパイル使用メモリ 242,440 KB
実行使用メモリ 23,856 KB
最終ジャッジ日時 2024-06-19 02:11:26
合計ジャッジ時間 11,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 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,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 143 ms
12,288 KB
testcase_13 AC 159 ms
12,928 KB
testcase_14 AC 90 ms
9,472 KB
testcase_15 AC 285 ms
18,176 KB
testcase_16 AC 337 ms
19,072 KB
testcase_17 AC 175 ms
14,336 KB
testcase_18 AC 125 ms
12,032 KB
testcase_19 AC 211 ms
15,872 KB
testcase_20 AC 77 ms
9,216 KB
testcase_21 AC 463 ms
22,912 KB
testcase_22 AC 386 ms
22,784 KB
testcase_23 AC 398 ms
23,856 KB
testcase_24 AC 426 ms
22,784 KB
testcase_25 AC 445 ms
22,784 KB
testcase_26 AC 402 ms
22,784 KB
testcase_27 AC 407 ms
23,040 KB
testcase_28 AC 424 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using mint = atcoder::modint1000000007;
const ll inf = 9e18;

int main(){

	ios::sync_with_stdio(0);
	cin.tie(0);

    ll n;
    cin >> n;

    vector<ll> a(n);
    map<ll,ll> g1,g2;
    map<ll,bool> is_separated;
    ll cnt=0;

    for(ll i=0;i<n;i++){
        cin >> a[i];
        g2[a[i]]++;
        g1[a[i]]=0;
        if(g2[a[i]]==1){
            is_separated[a[i]]=true;
            cnt++;
        }
        if(g2[a[i]]>=2){
            is_separated[a[i]]=false;
            cnt--;
        }
    }

    vector<ll> ans;

    for(ll i=0;i<n-1;i++){
        g1[a[i]]++;
        g2[a[i]]--;
        if(is_separated[a[i]]==false&&g1[a[i]]<=1&&g2[a[i]]<=1){
            cnt++;
            is_separated[a[i]]=true;
        }
        if(is_separated[a[i]]==true&&(g1[a[i]]>=2||g2[a[i]]>=2)){
            cnt--;
            is_separated[a[i]]=false;
        }
        if(cnt==is_separated.size()) ans.push_back(i+1);
    }

    cout << ans.size() << endl;
    for(ll idx:ans) cout << idx << " ";
    cout << endl;
    
}
0