結果

問題 No.2779 Don't make Pair
ユーザー VvyLwVvyLw
提出日時 2024-06-07 23:22:34
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,058 bytes
コンパイル時間 1,525 ms
コンパイル使用メモリ 120,540 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-06-07 23:22:38
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 26 ms
5,632 KB
testcase_13 WA -
testcase_14 AC 19 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 45 ms
7,236 KB
testcase_17 AC 33 ms
5,620 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 36 ms
6,144 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 58 ms
8,448 KB
testcase_22 AC 58 ms
8,424 KB
testcase_23 AC 64 ms
8,340 KB
testcase_24 AC 58 ms
8,452 KB
testcase_25 AC 58 ms
8,448 KB
testcase_26 AC 58 ms
8,444 KB
testcase_27 AC 59 ms
8,448 KB
testcase_28 AC 59 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <unordered_map>
// #include <C++/core/io/output.hpp>
int main() {
    int n;
    std::cin >> n;
    std::vector<int> a(n), id;
    std::unordered_map<int, int> cnt;
    for(auto &e: a) {
        std::cin >> e;
        cnt[e]++;
    }
    for(int i = 0; i < n; ++i) {
        if(cnt[a[i]] > 1) {
            id.emplace_back(i);
        }
    }
    // dump(id);
    const int m = std::ssize(id);
    if(m == 0) {
        std::cout << n - 1 << '\n';
        for(int i = 1; i < n; ++i) {
            std::cout << i << " \n"[i + 1 == n];
        }
        return 0;
    }
    const int l = id[(m + 1) / 2 - 1], r = id[m / 2];
    // dump(l, r, a[l], a[r]);
    if(m > 2 && [=]{
        bool ng = false;
        for(int i = 0; ++i < m;) {
            ng |= a[id[i - 1]] == a[id[i]];
        }
        return ng;
    }()) {
        std::cout << "0\n\n";
    } else {
        std::cout << r - l << '\n';
        for(int i = l; ++i <= r;) {
            std::cout << i << " \n"[i == r];
        }
    }
}
0