結果

問題 No.2779 Don't make Pair
ユーザー やまひろやまひろ
提出日時 2024-06-19 02:00:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,089 bytes
コンパイル時間 4,682 ms
コンパイル使用メモリ 241,416 KB
実行使用メモリ 23,988 KB
最終ジャッジ日時 2024-06-19 02:01:01
合計ジャッジ時間 12,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
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 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 129 ms
12,288 KB
testcase_13 AC 138 ms
13,056 KB
testcase_14 AC 77 ms
9,472 KB
testcase_15 AC 249 ms
18,304 KB
testcase_16 WA -
testcase_17 AC 190 ms
14,464 KB
testcase_18 AC 117 ms
12,160 KB
testcase_19 AC 198 ms
15,872 KB
testcase_20 AC 72 ms
9,216 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 368 ms
23,988 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 354 ms
22,784 KB
testcase_27 AC 361 ms
22,912 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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]]>1){
            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 << " ";
    
}
0