結果

問題 No.2779 Don't make Pair
ユーザー VvyLwVvyLw
提出日時 2024-06-07 23:37:38
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 102,100 KB
実行使用メモリ 12,564 KB
最終ジャッジ日時 2024-06-07 23:37:45
合計ジャッジ時間 3,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,948 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 36 ms
6,940 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 37 ms
7,524 KB
testcase_13 AC 40 ms
7,736 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 AC 58 ms
9,912 KB
testcase_16 AC 62 ms
10,044 KB
testcase_17 AC 42 ms
8,124 KB
testcase_18 AC 32 ms
6,940 KB
testcase_19 AC 46 ms
8,888 KB
testcase_20 AC 22 ms
6,944 KB
testcase_21 AC 83 ms
12,440 KB
testcase_22 AC 85 ms
12,560 KB
testcase_23 AC 93 ms
12,436 KB
testcase_24 AC 95 ms
12,564 KB
testcase_25 AC 86 ms
12,436 KB
testcase_26 AC 80 ms
12,436 KB
testcase_27 AC 88 ms
12,440 KB
testcase_28 AC 86 ms
12,528 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::unordered_map<int, std::vector<int>> m;
    for(int i = 0; i < n; ++i) {
        int a;
        std::cin >> a;
        m[a].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