結果
問題 | No.1053 ゲーミング棒 |
ユーザー | outline |
提出日時 | 2020-12-14 16:36:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 1,958 bytes |
コンパイル時間 | 1,671 ms |
コンパイル使用メモリ | 136,120 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-09-20 00:48:01 |
合計ジャッジ時間 | 2,660 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 18 ms
8,704 KB |
testcase_24 | AC | 20 ms
8,576 KB |
testcase_25 | AC | 21 ms
8,704 KB |
testcase_26 | AC | 20 ms
8,576 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,940 KB |
testcase_30 | AC | 8 ms
6,944 KB |
testcase_31 | AC | 8 ms
6,944 KB |
testcase_32 | AC | 9 ms
6,940 KB |
testcase_33 | AC | 9 ms
6,940 KB |
testcase_34 | AC | 9 ms
6,940 KB |
testcase_35 | AC | 10 ms
6,940 KB |
testcase_36 | AC | 10 ms
6,944 KB |
ソースコード
#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; } int ans = 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){ ans = 1; } else{ cout << -1 << endl; return 0; } } } cout << ans << endl; return 0; }