結果

問題 No.818 Dinner time
ユーザー betrue12betrue12
提出日時 2019-04-19 23:14:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 167,872 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 04:22:18
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 51 ms
6,944 KB
testcase_18 AC 35 ms
6,940 KB
testcase_19 AC 39 ms
6,940 KB
testcase_20 AC 50 ms
6,948 KB
testcase_21 AC 46 ms
6,940 KB
testcase_22 AC 36 ms
6,940 KB
testcase_23 AC 41 ms
6,944 KB
testcase_24 AC 59 ms
6,944 KB
testcase_25 AC 40 ms
6,944 KB
testcase_26 AC 35 ms
6,944 KB
testcase_27 AC 52 ms
6,944 KB
testcase_28 AC 43 ms
6,944 KB
testcase_29 AC 56 ms
6,940 KB
testcase_30 AC 47 ms
6,944 KB
testcase_31 AC 51 ms
6,940 KB
testcase_32 AC 42 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int64_t N, M, A[100000], B[100000];
    cin >> N >> M;
    for(int i=0; i<N; i++) cin >> A[i] >> B[i];

    int64_t a = 0, b = 0, c = 0;
    int64_t ans = -1e18;
    for(int i=0; i<N; i++){
        if(A[i] < 0 && B[i] < 0){
            a += A[i];
            b += max(A[i], B[i]);
            c += max(M*A[i], B[i]);
        }else{
            int64_t x, y;
            if(A[i] >= 0){
                x = A[i];
                y = max(A[i], B[i]);
            }else{
                x = 0;
                y = B[i];
            }
            a += x;
            b += y;
            c += (M-1)*x + y;
        }
        if(b <= c){
            a = 0;
            b = c;
        }
        ans = max({ans, b, c});
    }

    cout << ans << endl;
    return 0;
}
0