結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
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