結果

問題 No.2779 Don't make Pair
ユーザー maeshunmaeshun
提出日時 2024-06-08 12:42:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 4,503 ms
コンパイル使用メモリ 268,620 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-08 12:42:49
合計ジャッジ時間 7,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,944 KB
testcase_04 AC 2 ms
6,940 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 47 ms
8,572 KB
testcase_13 AC 51 ms
8,832 KB
testcase_14 AC 34 ms
6,940 KB
testcase_15 AC 92 ms
11,904 KB
testcase_16 AC 112 ms
12,544 KB
testcase_17 AC 65 ms
9,472 KB
testcase_18 AC 44 ms
8,064 KB
testcase_19 AC 77 ms
10,624 KB
testcase_20 AC 33 ms
6,940 KB
testcase_21 AC 131 ms
14,720 KB
testcase_22 AC 131 ms
14,720 KB
testcase_23 AC 134 ms
14,592 KB
testcase_24 AC 142 ms
14,592 KB
testcase_25 AC 128 ms
14,592 KB
testcase_26 AC 129 ms
14,720 KB
testcase_27 AC 124 ms
14,720 KB
testcase_28 AC 133 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    map<int, vector<int>> mp;
    rep(i,n) mp[a[i]].push_back(i);
    int l = 0;
    int r = n-1;
    for(auto p : mp) {
        if(p.second.size()>=3) {
            cout << 0 << endl;
            cout << endl;
            return 0;
        }
        if(p.second.size()<=1) continue;
        l = max(l, p.second[0]);
        r = min(r, p.second[1]);
    }
    if(r-l<0) {
        cout << 0 << endl;
        cout << endl;
        return 0;
    }
    cout << r - l << endl;
    for(int i=l+1;i<=r;i++){
        cout << i << " ";
    }
    cout << endl;
    return 0;
}
0