結果

問題 No.398 ハーフパイプ(2)
ユーザー koyumeishikoyumeishi
提出日時 2015-10-28 00:37:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-06-27 14:14:54
合計ジャッジ時間 17,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 889 ms
92,288 KB
testcase_01 AC 884 ms
92,288 KB
testcase_02 AC 911 ms
92,288 KB
testcase_03 AC 899 ms
92,288 KB
testcase_04 AC 878 ms
92,160 KB
testcase_05 AC 907 ms
92,416 KB
testcase_06 AC 903 ms
92,288 KB
testcase_07 AC 890 ms
92,416 KB
testcase_08 AC 888 ms
92,160 KB
testcase_09 AC 889 ms
92,416 KB
testcase_10 AC 878 ms
92,288 KB
testcase_11 AC 882 ms
92,160 KB
testcase_12 AC 885 ms
92,288 KB
testcase_13 AC 893 ms
92,160 KB
testcase_14 AC 875 ms
92,288 KB
testcase_15 AC 889 ms
92,160 KB
testcase_16 AC 872 ms
92,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:40:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |         scanf("%d.%d", &a,&b);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <map>
#include <algorithm>
#include <functional>
#include <cassert>
using namespace std;

#define SZ 101
#define NUM 6

int main(){
	vector<vector<vector<long long>>> dp(SZ,vector<vector<long long>>(SZ,vector<long long>(100+1, 0)));	//dp[min][max][sum]

	for(int i=0; i<SZ; i++){
		dp[i][i][i] = 1;
	}
	for(int i=1; i<NUM; i++){
		vector<vector<vector<long long>>> dp_(SZ,vector<vector<long long>>(SZ,vector<long long>((i+1)*100+1, 0)));

		for(int k=0; k<SZ; k++)
		for(int min_=0;    min_<SZ; ++min_)
		for(int max_=min_; max_<SZ; ++max_)
		for(int sum=0; sum<=i*100; ++sum){
			dp_[min(min_,k)][max(max_,k)][sum+k] += dp[min_][max_][sum];	
		}
		swap(dp, dp_);
	}

	vector<long long> m(401, 0);
	for(int min_=0;    min_<SZ; ++min_)
	for(int max_=min_; max_<SZ; ++max_)
	for(int sum=0; sum<=600; ++sum){
		if(dp[min_][max_][sum] > 0)
			m[sum-(min_+max_)] += dp[min_][max_][sum];
	}

	int a,b;
	scanf("%d.%d", &a,&b);
	a = (a*100+b)/25;

	printf("%lld\n", m[a]);
	//cout << m[a] << endl;
	return 0;
}
0