結果
問題 | No.2779 Don't make Pair |
ユーザー |
|
提出日時 | 2024-06-07 21:58:11 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 110 ms / 2,000 ms |
コード長 | 895 bytes |
コンパイル時間 | 4,615 ms |
コンパイル使用メモリ | 270,388 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-12-26 07:56:30 |
合計ジャッジ時間 | 6,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 24 |
ソースコード
#pragma GCC optimize("O3")#ifdef LOCAL#include "algo/debug_ver3.hpp"#else#define debug(...)#define debugArr(...)#endif#include <bits/stdc++.h>using namespace std;int main() {cin.tie(nullptr);ios::sync_with_stdio(false);int n;cin >> n;vector<int> a(n);for (int i = 0; i < n; ++i) {cin >> a[i];}map<int, set<int>> cnt;for (int i = 0; i < n; ++i) {cnt[a[i]].insert(i);}vector<int> ans;if (count_if(cnt.begin(), cnt.end(), [](pair<const int, set<int>>& p) { return p.second.size() <= 2; })) {int l = 0, r = n - 1;for (auto [_, st] : cnt) {if (st.size() != 2) {continue;}l = max(l, *st.begin());r = min(r, *st.rbegin());}for (int i = l; i < r; ++i) {ans.push_back(i);}}cout << ans.size() << '\n';for (int i = 0; i < int(ans.size()); ++i) {cout << (i == 0 ? "" : " ") << ans[i] + 1;}cout << '\n';}