結果

問題 No.1053 ゲーミング棒
ユーザー outlineoutline
提出日時 2020-12-14 16:30:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,882 bytes
コンパイル時間 1,240 ms
コンパイル使用メモリ 135,424 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-09-20 00:47:51
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 19 ms
8,576 KB
testcase_24 AC 21 ms
8,704 KB
testcase_25 AC 22 ms
8,704 KB
testcase_26 AC 20 ms
8,832 KB
testcase_27 WA -
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 AC 10 ms
6,160 KB
testcase_32 AC 9 ms
6,288 KB
testcase_33 AC 9 ms
6,152 KB
testcase_34 AC 10 ms
6,144 KB
testcase_35 AC 11 ms
6,144 KB
testcase_36 AC 12 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, A;
    cin >> N;
    vector<vector<int>> pos(N + 1);
    bool solo = true;
    for(int i = 0; i < N; ++i){
        cin >> A;
        if(pos[A].size())   solo = false;
        pos[A].emplace_back(i);
    }
    if(solo){
        cout << 0 << endl;
        return 0;
    }

    for(int k = 1; k <= N; ++k){
        if(pos[k].size() <= 1)  continue;
        bool link = true, multi = false;
        int n = pos[k].size();
        for(int i = 0; i + 1 < n; ++i){
            if(pos[k][i] + 1 != pos[k][i + 1]){
                if(link)    link = false;
                else    multi = true;
            }
        }
        if(multi){
            cout << -1 << endl;
            return 0;
        }
        if(!link){
            if(pos[k][0] != 0 || pos[k][n - 1] != N - 1){
                cout << -1 << endl;
                return 0;
            }
        }
    }

    cout << 1 << endl;

    return 0;
}
0