結果

問題 No.398 ハーフパイプ(2)
ユーザー tancahn2380tancahn2380
提出日時 2019-05-18 20:22:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 159,032 KB
実行使用メモリ 236,876 KB
最終ジャッジ日時 2024-09-17 06:20:26
合計ジャッジ時間 7,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
192,980 KB
testcase_01 AC 376 ms
236,764 KB
testcase_02 AC 339 ms
232,268 KB
testcase_03 AC 345 ms
232,536 KB
testcase_04 AC 340 ms
232,400 KB
testcase_05 AC 375 ms
236,368 KB
testcase_06 AC 217 ms
208,860 KB
testcase_07 AC 283 ms
224,096 KB
testcase_08 AC 375 ms
236,876 KB
testcase_09 AC 374 ms
236,236 KB
testcase_10 AC 379 ms
236,364 KB
testcase_11 AC 383 ms
236,364 KB
testcase_12 AC 377 ms
235,468 KB
testcase_13 AC 371 ms
235,596 KB
testcase_14 AC 372 ms
235,096 KB
testcase_15 AC 374 ms
236,748 KB
testcase_16 AC 369 ms
235,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include "bits/stdc++.h"
using namespace std;
using LL = long long;


double x;
LL ans;
LL dp[6][101][101][601];
int main(){
    cin >> x;
    int sum = (int)(x * 4 + 1e-10);
    LL ans = 0;
    int lim = sum + 200;
    for (int i = 0; i <= 100; i++) {
        dp[0][i][i][i] = 1;
    }
    for (int i = 1; i < 6; i++) {
        for (int j = 0; j <= 100; j++) {
            for (int k = j; k <= 100; k++) {
                for (int l = 0; l <= lim; l++) {
                    if (dp[i - 1][j][k][l] == 0) continue;
                    for (int m = 0; m <= 100 && l + m <= lim; m++) {
                        dp[i][min(j, m)][max(k, m)][l + m] += dp[i - 1][j][k][l];
                    }
                }
            }
        }
    }
    for (int i = 0; i <= 100; i++) {
        for (int j = i; j <= 100; j++) {
            ans += dp[5][i][j][sum + i + j];
        }
    }
    cout << ans << endl;
}
0