結果

問題 No.1148 土偶Ⅲ
ユーザー furafura
提出日時 2020-08-06 04:25:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 209,844 KB
実行使用メモリ 7,700 KB
最終ジャッジ日時 2024-09-19 02:03:41
合計ジャッジ時間 3,836 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 71 ms
7,700 KB
testcase_07 AC 45 ms
6,656 KB
testcase_08 AC 63 ms
7,236 KB
testcase_09 AC 60 ms
7,040 KB
testcase_10 AC 25 ms
5,504 KB
testcase_11 AC 60 ms
7,168 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 40 ms
6,400 KB
testcase_16 AC 15 ms
5,376 KB
testcase_17 AC 67 ms
7,552 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 25 ms
5,504 KB
testcase_20 AC 33 ms
5,888 KB
testcase_21 AC 25 ms
5,504 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 23 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n,w; scanf("%d%d",&n,&w);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	int ans=0,dup=0;
	lint sum=0;
	map<int,int> f;
	for(int l=0,r=0;l<n;){
		while(r<n && sum<=w && dup==0){
			sum+=a[r];
			++f[a[r]];
			if(f[a[r]]==2) dup++;
			r++;
		}

		ans=max(ans,r-l-1);

		sum-=a[l];
		--f[a[l]];
		if(f[a[l]]==1) dup--;
		l++;
	}
	printf("%d\n",ans);

	return 0;
}
0