結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | koyumeishi |
提出日時 | 2015-12-17 11:31:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,232 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 71,292 KB |
最終ジャッジ日時 | 2024-11-14 19:31:16 |
合計ジャッジ時間 | 820 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:29:32: error: ‘accumulate’ was not declared in this scope 29 | printf("%d\n", accumulate(w.begin(), w.end(), 0)); | ^~~~~~~~~~ main.cpp: In function ‘std::istream& operator>>(std::istream&, std::vector<int>&)’: main.cpp:13:79: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | istream& operator >> (istream& is, vector<int>& vec){ for(int& val: vec) scanf("%d", &val); return is;} | ~~~~~^~~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d%d", &n,&m); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:22:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | for(int& x:w) scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <set> using namespace std; istream& operator >> (istream& is, vector<int>& vec){ for(int& val: vec) scanf("%d", &val); return is;} template<class T> istream& operator >> (istream& is, vector<T>& vec){ for(T& val: vec) is >> val; return is;} int main(){ int n,m; //cin >> n >> m; scanf("%d%d", &n,&m); vector<int> w(n); //cin >> w; for(int& x:w) scanf("%d", &x); if(m<=1){ cout << 0 << endl; return 0; } if(n==m){ printf("%d\n", accumulate(w.begin(), w.end(), 0)); return 0; } const int inf = 100000000; //vector<vector<vector<int>>> dp (2,vector<vector<int>>(2,vector<int>(m+2, -inf))); //vector<vector<vector<int>>> dp_(2,vector<vector<int>>(2,vector<int>(m+2, -inf))); vector<vector<int>> dp(4, vector<int>(m+2, -inf)); vector<vector<int>> dp_(4, vector<int>(m+2, -inf)); //dp[0][0][0] = 0; //dp[1][1][1] = 0; dp[0][0] = 0; dp[3][1] = 0; for(int i=1; i<n; i++){ for(int k=max(0,m-(n-i)); k<=min(i,m); ++k){ dp_[0][k] = max(dp_[0][k], max(dp[0][k], dp[1][k])); dp_[1][k+1] = max(dp_[1][k+1], max(dp[0][k], dp[1][k]+w[i-1])); dp_[2][k] = max(dp_[2][k], max(dp[2][k], dp[3][k])); dp_[3][k+1] = max(dp_[3][k+1], max(dp[2][k], dp[3][k]+w[i-1])); dp[0][k] = dp[1][k] = dp[2][k] = dp[3][k] = -inf; } swap(dp, dp_); } int ans = max({dp[0][m], dp[1][m], dp[2][m], dp[3][m]+w[n-1]}); /* for(int i=1; i<n; i++){ for(int k=max(0,m-(n-i)); k<=min(i,m); ++k){ dp_[0][0][k] = max({dp_[0][0][k], dp[0][0][k], dp[0][1][k]}); dp_[0][1][k+1] = max({dp_[0][1][k+1], dp[0][0][k], dp[0][1][k]+w[i-1]}); dp_[1][0][k] = max({dp_[1][0][k], dp[1][0][k], dp[1][1][k]}); dp_[1][1][k+1] = max({dp_[1][1][k+1], dp[1][0][k], dp[1][1][k]+w[i-1]}); dp[0][0][k] = dp[0][1][k] = dp[1][0][k] = dp[1][1][k] = -inf; } swap(dp, dp_); } int ans = max({dp[0][0][m], dp[0][1][m], dp[1][0][m], dp[1][1][m]+w[n-1]}); */ printf("%d\n", ans); //cout << ans << endl; return 0; }