結果

問題 No.2779 Don't make Pair
ユーザー ypwwypww
提出日時 2024-06-07 21:53:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,601 bytes
コンパイル時間 4,722 ms
コンパイル使用メモリ 270,664 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-07 21:53:16
合計ジャッジ時間 7,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 48 ms
8,592 KB
testcase_13 AC 52 ms
9,216 KB
testcase_14 AC 32 ms
6,944 KB
testcase_15 AC 100 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 60 ms
9,600 KB
testcase_18 AC 44 ms
8,088 KB
testcase_19 AC 80 ms
10,880 KB
testcase_20 AC 29 ms
6,940 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 155 ms
14,976 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 149 ms
15,104 KB
testcase_27 AC 151 ms
15,104 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
template <class T> using priority_queue_rev = priority_queue<T, vector<T>, greater<T>>;

#define rep(i, a, b) for(ll i=a; i<b; i++)
#define rrep(i, a, b) for(ll i=a; i>=b; i--)
#define all(a) (a).begin(), (a).end()
#define smod(n, m) ((((n) % (m)) + (m)) % (m)) // 非負mod
#define YesNo(bool) if(bool){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}

template<typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); }

inline int popcount(int n) { return __builtin_popcount(n); } // 2進数で表した場合に立ってるビット数がいくつか
inline int popcount(ll n) { return __builtin_popcountll(n); }
inline int ctz(int n) { return n != 0 ? __builtin_ctz(n) : -1; } // 2進数で表した場合に 1 の位からいくつ 0 が連なっているか
inline int ctz(ll n) { return n != 0 ? __builtin_ctzll(n) : -1; }
inline int clz(int n) { return n != 0 ? (31 - __builtin_clz(n)) : -1; } // 2進数で表した場合に左側にいくつ 0 を埋める必要があるか
inline int clz(ll n) { return n != 0 ? (63 - __builtin_clzll(n)) : -1; }

const double PI = 3.141592653589793;
const vector<int> DX = { 1, 0, -1, 0 };
const vector<int> DY = { 0, 1, 0, -1 };
const long long INF = 4004004003104004004LL; // (int)INF = 1010931620;
ll coordinate(ll h, ll w, ll W){ return h*W + w; } // 二次元座標を一次元座標に変換

#define endl "\n" // インタラクティブの時はコメントアウトする

int main()
{
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    // cout << fixed << setprecision(18);

    ll n;
    cin>>n;
    vector<ll>a(n);
    rep(i,0,n)cin>>a[i];
    map<ll,vector<ll>> mp;
    rep(i,0,n){
        mp[a[i]].push_back(i);
        if (mp[a[i]].size()>2){
            cout << 0 << endl;
            return 0;
        }
    }
    ll maxl = -INF;
    ll minr = INF;
    rep(i,0,n){
        if (mp[a[i]].size()==2){
            chmax(maxl, mp[a[i]][0]);
            chmin(minr, mp[a[i]][1]);
        }
    }
    if (minr == INF){
        cout << n-1 << endl;
        rep(i,0,n-1){
            cout << i+1 << " ";
        }
        cout << endl;
        return 0;
    }

    if (maxl > minr){
        cout << 0 << endl;
        return 0;
    }

    cout << minr - maxl << endl;
    rep(i,maxl,minr){
        cout << i+1 << " ";
    }
    cout << endl;
    
    return 0;
}
0