結果
問題 | No.818 Dinner time |
ユーザー | ok |
提出日時 | 2019-04-19 23:18:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,393 bytes |
コンパイル時間 | 696 ms |
コンパイル使用メモリ | 71,724 KB |
実行使用メモリ | 7,892 KB |
最終ジャッジ日時 | 2024-09-23 04:56:05 |
合計ジャッジ時間 | 1,979 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 13 ms
5,376 KB |
testcase_23 | AC | 16 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 15 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 19 ms
6,016 KB |
testcase_28 | AC | 17 ms
5,504 KB |
testcase_29 | WA | - |
testcase_30 | AC | 17 ms
5,888 KB |
testcase_31 | AC | 19 ms
5,888 KB |
testcase_32 | WA | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; #define int long long #define rep(i,n) for(int i = 0; i < (n); i++) #define INF ((long long)1e18) #define MOD ((int)1e9+7) #define endl "\n" #define yn(f) ((f)?"Yes":"No") #define YN(f) ((f)?"YES":"NO") #define MAX 110000 int N, M; int a, b; int A[MAX], B[MAX]; int hoge[MAX][4] = {}; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(10); int ans = 0, temp, num = 0, x = 0, y = 0; cin>>N>>M; // hoge[0][0] = -INF; for(int i = 0; i < N; i++){ cin>>a>>b; if(a >= 0 && b >= 0){ if(a >= b) temp = a*M; else temp = a*(M-1)+b; } else if(a >= 0 && b < 0){ temp = a*M; } else if(a < 0 && b >= 0){ temp = b; } else { if(b >= a*M){ temp = b; } else { temp = a*M; } } if(!i){ x = temp; y = max(a,b); continue; } hoge[i+1][2] += temp+hoge[i][2]; hoge[i+1][1] = max(hoge[i][2],hoge[i][1]) + max(a,b); hoge[i+1][0] = max(hoge[i][0],max(hoge[i][2],hoge[i][1])); // else hoge[i+1][0] = -INF; // cout<<temp<<" "<<max(a,b)<<endl; // cout<<hoge[i+1][0]<<" "<<hoge[i+1][1]<<" "<<hoge[i+1][2]<<endl; } // ans = max(hoge[N][0],max(hoge[N][2],hoge[N][1])); ans = max(hoge[N][0]+y,max(hoge[N][2]+x,hoge[N][1]+x)); cout<<ans<<endl; return 0; }