結果
問題 |
No.1053 ゲーミング棒
|
ユーザー |
![]() |
提出日時 | 2020-05-15 22:22:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 767 bytes |
コンパイル時間 | 1,756 ms |
コンパイル使用メモリ | 168,916 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 11:09:19 |
合計ジャッジ時間 | 3,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> int ri() { int n; scanf("%d", &n); return n; } int main() { int n = ri(); int a[n]; for (auto &i : a) i = ri() - 1; std::vector<int> compressed; for (int i = 0; i < n; i++) if (!i || a[i - 1] != a[i]) compressed.push_back(a[i]); bool possible = true; int cnt[n]; for (auto &i : cnt) i = -1; std::vector<int> twos; for (int i = 0; i < (int) compressed.size(); i++) { if (cnt[compressed[i]] == -2) possible = false; else if (cnt[compressed[i]] == -1) cnt[compressed[i]] = i; else twos.push_back(i), twos.push_back(cnt[compressed[i]]), cnt[compressed[i]] = -2; } for (auto i : twos) if (i && i + 1 < (int) compressed.size()) possible = false; printf("%s", possible ? twos.size() ? "1" : "0" : "-1"); return 0; }