結果

問題 No.398 ハーフパイプ(2)
ユーザー tancahn2380tancahn2380
提出日時 2019-05-18 20:31:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 166,804 KB
実行使用メモリ 116,224 KB
最終ジャッジ日時 2024-09-17 06:22:04
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
81,024 KB
testcase_01 AC 395 ms
116,224 KB
testcase_02 AC 357 ms
111,616 KB
testcase_03 AC 395 ms
112,000 KB
testcase_04 AC 359 ms
111,744 KB
testcase_05 AC 394 ms
115,840 KB
testcase_06 AC 213 ms
97,152 KB
testcase_07 AC 285 ms
105,344 KB
testcase_08 AC 389 ms
116,096 KB
testcase_09 AC 385 ms
115,456 KB
testcase_10 AC 386 ms
115,584 KB
testcase_11 AC 388 ms
115,840 KB
testcase_12 AC 385 ms
114,688 KB
testcase_13 AC 385 ms
114,816 KB
testcase_14 AC 382 ms
114,432 KB
testcase_15 AC 389 ms
116,096 KB
testcase_16 AC 385 ms
114,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long dp[6][101][101][601];
int main()
{
    double x;
    cin >> x;
    int sum = (int)(x * 4 + 1e-9);
    long long ans = 0;
    int lim = sum + 200;
    for (int i = 0; i < 101; ++i) {
        dp[0][i][i][i] = 1;
    }
    for (int i = 1; i < 6; i++) {
        for (int j = 0; j < 101; j++) {
            for (int k = j; k < 101; k++) {
                for (int l = 0; l <= lim; ++l) {
                    if (dp[i - 1][j][k][l] == 0) continue;
                    
                    for (int m = 0; m < 101 && 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 < 101; ++i) {
        for (int j = i; j < 101; ++j) {
            ans += dp[5][i][j][sum + i + j];
        }
    }
    cout << ans << "\n";
    return 0;
}
0