結果

問題 No.1148 土偶Ⅲ
ユーザー んんんんんん
提出日時 2022-12-31 15:50:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 209,300 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-04 22:40:10
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 25 ms
5,376 KB
testcase_06 AC 57 ms
6,784 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 49 ms
6,016 KB
testcase_09 AC 48 ms
6,144 KB
testcase_10 AC 26 ms
5,376 KB
testcase_11 AC 33 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 74 ms
8,704 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 30 ms
5,572 KB
testcase_20 AC 19 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 35 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    long long W;
    cin >> N >> W;
    vector<long long> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    map<long long, int> mp;
    long long sum = 0;
    int ri = 0;
    int ans = -1;

    for (int le = 0; le < N; le++) {
        while (ri < N && sum + A[ri] <= W && (mp.count(A[ri]) == 0 || mp[A[ri]] == 0)) {
            sum += A[ri];
            mp[A[ri]] = 1;
            ri++;
        }

        ans = max(ans, ri - le);

        if (ri == le) ri++;
        else {
            sum -= A[le];
            mp[A[le]]--;
        }
    }

    cout << ans << endl;
}
0