結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | koyumeishi |
提出日時 | 2015-10-28 00:45:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,229 bytes |
コンパイル時間 | 610 ms |
コンパイル使用メモリ | 69,232 KB |
実行使用メモリ | 99,456 KB |
最終ジャッジ日時 | 2024-10-15 15:13:07 |
合計ジャッジ時間 | 10,073 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
コンパイルメッセージ
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))); if(i>1) for(int x=0; x<101; x++) for(int y=0; y<101; y++) fill(dp_[x][y], dp_[x][y]+601, 0LL); 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]; } 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; }