結果
問題 | No.1148 土偶Ⅲ |
ユーザー | eQe |
提出日時 | 2020-08-20 22:01:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 893 bytes |
コンパイル時間 | 1,625 ms |
コンパイル使用メモリ | 165,904 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-10-13 18:04:51 |
合計ジャッジ時間 | 3,968 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 28 ms
6,016 KB |
testcase_06 | AC | 75 ms
9,216 KB |
testcase_07 | AC | 44 ms
7,680 KB |
testcase_08 | AC | 64 ms
8,704 KB |
testcase_09 | AC | 63 ms
8,704 KB |
testcase_10 | AC | 31 ms
6,272 KB |
testcase_11 | AC | 56 ms
8,576 KB |
testcase_12 | AC | 5 ms
5,248 KB |
testcase_13 | AC | 9 ms
5,248 KB |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | AC | 39 ms
7,296 KB |
testcase_16 | AC | 15 ms
5,376 KB |
testcase_17 | AC | 82 ms
8,960 KB |
testcase_18 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 33 ms
6,144 KB |
testcase_20 | AC | 32 ms
6,784 KB |
testcase_21 | AC | 24 ms
6,400 KB |
testcase_22 | AC | 5 ms
5,248 KB |
testcase_23 | AC | 6 ms
5,248 KB |
testcase_24 | AC | 9 ms
5,248 KB |
testcase_25 | AC | 9 ms
5,248 KB |
testcase_26 | AC | 30 ms
5,248 KB |
testcase_27 | AC | 5 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define ft first #define sc second #define pt(sth) cout << sth << "\n" using namespace std; typedef long long ll; typedef pair<ll, ll> pll; template<class T>bool chmax(T &a, const T &b) {if(a<b) {a=b; return 1;} return 0;} template<class T>bool chmin(T &a, const T &b) {if(b<a) {a=b; return 1;} return 0;} static const ll INF=1e18; static const ll MAX=101010; static const ll MOD=998244353; //for(i=0; i<N; i++) cin >> a[i]; int main(void) { ll i, j, k; ll N, W; cin >> N >> W; ll a[MAX]; for(i=0; i<N; i++) cin >> a[i]; map<ll, ll> use; ll r=0; ll ans=0; ll S=0; for(ll l=0; l<N; l++) { while(r<N && !use[a[r]] && S+a[r]<=W) { S+=a[r]; use[a[r]]=1; r++; } chmax(ans, r-l); if(l==r) r++; else { S-=a[l]; use[a[l]]=0; } } pt(ans); }