結果

問題 No.818 Dinner time
ユーザー tarattata1tarattata1
提出日時 2019-04-19 23:56:39
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 71,256 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-29 23:32:15
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 0 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 20 ms
6,272 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 15 ms
5,248 KB
testcase_20 AC 20 ms
6,144 KB
testcase_21 AC 18 ms
5,504 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 24 ms
6,528 KB
testcase_25 AC 17 ms
5,376 KB
testcase_26 AC 14 ms
5,248 KB
testcase_27 AC 21 ms
6,016 KB
testcase_28 AC 17 ms
5,504 KB
testcase_29 AC 22 ms
6,144 KB
testcase_30 AC 19 ms
5,760 KB
testcase_31 AC 21 ms
6,016 KB
testcase_32 AC 16 ms
5,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |     scanf("%ld%ld", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:33:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |         scanf("%ld%ld", &a[i], &b[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <list>
#include <iterator>
#pragma warning(disable:4996)
 
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
#define MOD 1000000007
using namespace std;

ll dp[100005][3];

int main(int argc, char* argv[])
{
    long n, m;
    scanf("%ld%ld", &n, &m);

    vector<long> a(n),b(n);
    long i;
    for(i=0; i<n; i++) {
        scanf("%ld%ld", &a[i], &b[i]);
    }

    dp[n][0]=dp[n][1]=dp[n][2]=0;
    for(i=n-1; i>=0; i--) {
        dp[i][0]=0;
        dp[i][1]=MAX(dp[i+1][0],dp[i+1][1])+MAX(a[i],b[i]);
        dp[i][2]=MAX(dp[i+1][0],MAX(dp[i+1][1],dp[i+1][2]))+MAX((ll)a[i]*m,MAX(b[i]+(ll)a[i]*(m-1),b[i]));
    }
    printf("%lld\n", dp[0][2]);

    return 0;
}
0