結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | りあん |
提出日時 | 2016-07-14 16:26:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 426 ms / 2,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 1,571 ms |
コンパイル使用メモリ | 166,956 KB |
実行使用メモリ | 116,352 KB |
最終ジャッジ日時 | 2024-06-27 14:25:02 |
合計ジャッジ時間 | 9,060 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 149 ms
81,152 KB |
testcase_01 | AC | 426 ms
116,224 KB |
testcase_02 | AC | 375 ms
111,616 KB |
testcase_03 | AC | 384 ms
111,744 KB |
testcase_04 | AC | 377 ms
111,872 KB |
testcase_05 | AC | 411 ms
115,840 KB |
testcase_06 | AC | 248 ms
97,152 KB |
testcase_07 | AC | 324 ms
105,472 KB |
testcase_08 | AC | 421 ms
116,352 KB |
testcase_09 | AC | 414 ms
115,456 KB |
testcase_10 | AC | 410 ms
115,584 KB |
testcase_11 | AC | 416 ms
115,968 KB |
testcase_12 | AC | 403 ms
114,816 KB |
testcase_13 | AC | 409 ms
114,944 KB |
testcase_14 | AC | 401 ms
114,688 KB |
testcase_15 | AC | 412 ms
116,224 KB |
testcase_16 | AC | 410 ms
114,816 KB |
ソースコード
#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 = j * i; 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; }