結果

問題 No.921 ずんだアロー
ユーザー KKT89KKT89
提出日時 2019-11-08 21:30:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 01:13:26
合計ジャッジ時間 1,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long int ll;

int l[100100];
int r[100100];

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n; cin >> n;
	vector<int> a(n);
	vector<int> v;
	for(int i=0;i<n;i++){
		cin >> a[i];
	}
	for(int i=0;i<n;i++){
		int cp=a[i];
		int cnt=0;
		while(i<n&&cp==a[i]){
			i++;
			cnt++;
		}
		v.push_back(cnt);
		i--;
	}
	int m=v.size();
	for(int i=0;i<m;i+=2){
		l[i]=v[i];
		if(i){
			l[i]+=l[i-2];
		}
	}
	for(int i=1;i<m;i+=2){
		l[i]=v[i];
		if(i>1){
			l[i]+=l[i-2];
		}
	}
	for(int i=m-1;i>=0;i--){
		r[i]=v[i];
		if(i<m-2){
			r[i]+=r[i+2];
		}
	}
	int ans=0;
	for(int i=0;i<m;i++){
		int k=l[i]+r[i+3];
		ans=max(ans,k);
	}
	cout << ans << endl;
}
0