結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | koyumeishi |
提出日時 | 2015-10-28 00:46:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,159 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 69,268 KB |
実行使用メモリ | 99,584 KB |
最終ジャッジ日時 | 2024-10-14 15:37:39 |
合計ジャッジ時間 | 37,491 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:44:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 44 | scanf("%d.%d", &a,&b); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <map> #include <algorithm> #include <functional> #include <cassert> using namespace std; #define SZ 101 #define NUM 6 long long dp [101][101][601]; long long dp_[101][101][601]; 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 min_=0; min_<SZ; ++min_) for(int max_=min_; max_<SZ; ++max_) for(int sum=0; sum<=i*100; ++sum) for(int k=0; k<SZ; ++k){ dp_[min(min_,k)][max(max_,k)][sum+k] += dp[min_][max_][sum]; dp[min_][max_][sum] = 0; } 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; }