結果

問題 No.2779 Don't make Pair
ユーザー VvyLwVvyLw
提出日時 2024-06-07 23:36:01
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 103,052 KB
実行使用メモリ 12,956 KB
最終ジャッジ日時 2024-06-07 23:36:06
合計ジャッジ時間 4,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 7 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 33 ms
7,680 KB
testcase_13 AC 37 ms
8,060 KB
testcase_14 AC 25 ms
6,128 KB
testcase_15 AC 53 ms
10,084 KB
testcase_16 AC 56 ms
10,524 KB
testcase_17 AC 41 ms
8,348 KB
testcase_18 AC 32 ms
7,040 KB
testcase_19 AC 48 ms
9,140 KB
testcase_20 AC 24 ms
6,248 KB
testcase_21 AC 78 ms
12,832 KB
testcase_22 AC 75 ms
12,824 KB
testcase_23 AC 82 ms
12,828 KB
testcase_24 AC 78 ms
12,828 KB
testcase_25 AC 76 ms
12,824 KB
testcase_26 AC 75 ms
12,828 KB
testcase_27 AC 75 ms
12,828 KB
testcase_28 AC 70 ms
12,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <unordered_map>
template <class T, class U> inline bool chmax(T& a, const U& b){ if(a<b){ a=b; return 1; } return 0; }
template <class T, class U> inline bool chmin(T& a, const U& b){ if(a>b){ a=b; return 1; } return 0; }
int main() {
    int n;
    std::cin >> n;
    std::vector<int> a(n);
    std::unordered_map<int, std::vector<int>> m;
    for(int i = 0; i < n; ++i) {
        std::cin >> a[i];
        m[a[i]].emplace_back(i);
    }
    int l = 0, r = n - 1;
    for(const auto &[k, v]: m) {
        const int x = std::ssize(v);
        if(x > 2) {
            std::cout << "0\n\n";
            return 0;
        } else if(x == 2) {
            chmax(l, v.front());
            chmin(r, v.back());
        }
    }
    if(l < r) {
        std::cout << r - l << '\n';
        for(int i = l; ++i <= r;) {
            std::cout << i << " \n"[i == r];
        }
    } else {
        std::cout << "0\n\n";
    }
}
0