結果

問題 No.1053 ゲーミング棒
ユーザー QCFium
提出日時 2020-04-18 16:33:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 169,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 09:11:47
合計ジャッジ時間 2,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
	
	puts(possible ? twos.size() ? "1" : "0" : "-1");
	
	return 0;
}
0