結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | りあん |
提出日時 | 2016-07-14 16:21:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 345 ms / 2,000 ms |
コード長 | 917 bytes |
コンパイル時間 | 1,509 ms |
コンパイル使用メモリ | 167,040 KB |
実行使用メモリ | 116,352 KB |
最終ジャッジ日時 | 2024-06-11 03:33:20 |
合計ジャッジ時間 | 7,735 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
81,152 KB |
testcase_01 | AC | 340 ms
116,352 KB |
testcase_02 | AC | 321 ms
111,744 KB |
testcase_03 | AC | 318 ms
111,872 KB |
testcase_04 | AC | 313 ms
111,744 KB |
testcase_05 | AC | 339 ms
115,968 KB |
testcase_06 | AC | 210 ms
97,152 KB |
testcase_07 | AC | 260 ms
105,344 KB |
testcase_08 | AC | 336 ms
116,224 KB |
testcase_09 | AC | 332 ms
115,456 KB |
testcase_10 | AC | 333 ms
115,456 KB |
testcase_11 | AC | 334 ms
115,840 KB |
testcase_12 | AC | 326 ms
114,688 KB |
testcase_13 | AC | 329 ms
114,816 KB |
testcase_14 | AC | 330 ms
114,560 KB |
testcase_15 | AC | 342 ms
116,224 KB |
testcase_16 | AC | 345 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 = 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; }