結果

問題 No.398 ハーフパイプ(2)
ユーザー femtofemto
提出日時 2016-07-16 00:53:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 67,408 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-06-27 14:38:15
合計ジャッジ時間 9,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
116,480 KB
testcase_01 AC 458 ms
116,608 KB
testcase_02 AC 462 ms
116,608 KB
testcase_03 AC 466 ms
116,608 KB
testcase_04 AC 468 ms
116,736 KB
testcase_05 AC 463 ms
116,608 KB
testcase_06 AC 468 ms
116,736 KB
testcase_07 AC 463 ms
116,608 KB
testcase_08 AC 469 ms
116,480 KB
testcase_09 AC 464 ms
116,608 KB
testcase_10 AC 466 ms
116,736 KB
testcase_11 AC 464 ms
116,608 KB
testcase_12 AC 465 ms
116,608 KB
testcase_13 AC 464 ms
116,736 KB
testcase_14 AC 464 ms
116,736 KB
testcase_15 AC 461 ms
116,608 KB
testcase_16 AC 466 ms
116,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
using namespace std;

typedef long long ll;
ll dp[7][110][110][610];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	double X;
	cin >> X;
	X *= 4;

	dp[0][100][0][0] = 1;
	for(int i = 0; i < 6; i++) {
		for(int j = 0; j <= 100; j++) {
			for(int k = 0; k <= 100; k++) {
				for(int l = 0; l <= 600; l++) {
					if(dp[i][j][k][l] == 0) continue;
					for(int m = 0; m <= 100; m++) {
						dp[i + 1][min(j, m)][max(k, m)][l + m] += dp[i][j][k][l];
					}
				}
			}
		}
	}

	ll ans = 0;
	for(int j = 0; j <= 100; j++) {
		for(int k = 0; k <= 100; k++) {
			for(int l = 0; l <= 600; l++) {
				if(l - j - k == (int)X) {
					ans += dp[6][j][k][l];
				}
			}
		}
	}
	cout << ans << endl;
}
0