結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | tjake |
提出日時 | 2015-12-17 02:19:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,218 bytes |
コンパイル時間 | 608 ms |
コンパイル使用メモリ | 74,804 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 06:56:01 |
合計ジャッジ時間 | 1,984 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 19 ms
6,940 KB |
testcase_05 | AC | 47 ms
6,940 KB |
testcase_06 | AC | 17 ms
6,944 KB |
testcase_07 | AC | 43 ms
6,940 KB |
testcase_08 | AC | 18 ms
6,940 KB |
testcase_09 | AC | 9 ms
6,940 KB |
testcase_10 | AC | 18 ms
6,940 KB |
testcase_11 | AC | 9 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 5 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 45 ms
6,944 KB |
testcase_33 | AC | 38 ms
6,940 KB |
testcase_34 | AC | 18 ms
6,944 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 6 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,944 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<queue> #include<stack> #include<map> #include<set> #include<algorithm> #include<functional> #include<cstdio> #include<cstdlib> #include<cmath> using namespace std; #define mind(a,b) (a>b?b:a) #define maxd(a,b) (a>b?a:b) #define absd(x) (x<0?-(x):x) #define pow2(x) ((x)*(x)) #define rep(i,n) for(int i=0; i<n; ++i) #define repr(i,n) for(int i=n-1; i>=0; --i) #define repl(i,s,n) for(int i=s; i<=n; ++i) #define replr(i,s,n) for(int i=n; i>=s; --i) #define repf(i,s,n,j) for(int i=s; i<=n; i+=j) #define repe(e,obj) for(auto e : obj) #define SP << " " << #define COL << " : " << #define COM << ", " << #define ARR << " -> " << #define PNT(STR) cout << STR << endl #define POS(X,Y) "(" << X << ", " << Y << ")" #define DEB(A) " (" << #A << ") " << A #define DEBREP(i,n,val) for(int i=0; i<n; ++i) cout << val << " "; cout << endl #define ALL(V) (V).begin(), (V).end() #define INF 1000000007 #define INFLL 10000000000000000007LL #define EPS 1e-9 typedef unsigned int uint; typedef unsigned long ulong; typedef unsigned long long ull; typedef long long ll; typedef long double ld; typedef pair<int, int> P; //typedef pair<ll, ll> P; typedef pair<P, int> PI; typedef pair<int, P> IP; typedef pair<P, P> PP; typedef priority_queue<P, vector<P>, greater<P> > pvqueue; #define N 3003 int n, m; int w[N]; int dp[N], rs[N]; bool used[N][N]; int base; int main() { cin >> n >> m; rep(i, n) cin >> w[i]; int ans = -INF; // 1 rep(i, m+1) dp[i] = rs[i] = -INF; dp[1] = 0; repl(i, 1, n-1) { int dp2[N]; int base = (i==n-1 ? w[n-1] : 0); dp2[0] = -INF; rep(j, m) { dp2[j+1] = maxd(-INF, dp[j]+w[i-1]+base); dp2[j+1] = maxd(dp2[j+1], rs[j]+base); } rep(j, m+1) rs[j] = maxd(dp[j], rs[j]); rep(j, m+1) dp[j] = dp2[j]; ans = maxd(ans, dp[m]); } // 0 rep(i, m+1) dp[i] = rs[i] = -INF; rs[0] = 0; repl(i, 1, n-1) { int dp2[N]; dp2[0] = -INF; rep(j, m) { dp2[j+1] = maxd(-INF, dp[j]+w[i-1]); dp2[j+1] = maxd(dp2[j+1], rs[j]); } rep(j, m+1) rs[j] = maxd(dp[j], rs[j]); rep(j, m+1) dp[j] = dp2[j]; ans = maxd(ans, dp[m]); } cout << ans << endl; return 0; }