結果

問題 No.1535 五七五
ユーザー t98slidert98slider
提出日時 2022-12-13 10:20:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 166,400 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-04-24 21:18:42
合計ジャッジ時間 4,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 36 ms
20,992 KB
testcase_05 AC 41 ms
20,864 KB
testcase_06 AC 42 ms
20,864 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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 58 ms
20,864 KB
testcase_19 AC 57 ms
20,864 KB
testcase_20 AC 55 ms
20,992 KB
testcase_21 AC 58 ms
20,864 KB
testcase_22 AC 55 ms
20,864 KB
testcase_23 AC 53 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<int> a(3);
    cin >> a[0] >> a[1] >> a[2];
    vector<int> cum(n + 1), idx(3);
    for(int i = 0; i < n; i++){
        string str;
        cin >> str;
        cum[i + 1] = cum[i] + str.size();
    }
    vector<array<ll, 4>> dp(n + 1, {0, 0, 0, 0});
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j < 3; j++){
            while(idx[j] <= n && cum[idx[j]] < cum[i] + a[j])idx[j]++;
            if(idx[j] <= n && cum[i] + a[j] == cum[idx[j]]) dp[idx[j]][j + 1] += dp[i][j];
        }
        dp[i + 1][0] += dp[i][0];
        dp[i + 1][3] += dp[i][3];
    }
    cout << dp[n][3] << '\n';
}
0