結果

問題 No.2854 -1 Subsequence
ユーザー MMMM
提出日時 2024-08-25 14:09:03
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 6,264 ms
コンパイル使用メモリ 336,936 KB
実行使用メモリ 15,940 KB
最終ジャッジ日時 2024-08-25 14:09:19
合計ジャッジ時間 9,878 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
13,328 KB
testcase_01 AC 81 ms
12,888 KB
testcase_02 AC 86 ms
13,224 KB
testcase_03 AC 47 ms
8,704 KB
testcase_04 AC 95 ms
14,620 KB
testcase_05 AC 61 ms
10,368 KB
testcase_06 AC 35 ms
7,424 KB
testcase_07 AC 91 ms
14,264 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 67 ms
11,136 KB
testcase_10 AC 104 ms
15,940 KB
testcase_11 AC 105 ms
15,836 KB
testcase_12 AC 105 ms
15,800 KB
testcase_13 AC 105 ms
15,728 KB
testcase_14 AC 106 ms
15,792 KB
testcase_15 AC 105 ms
15,832 KB
testcase_16 AC 105 ms
15,800 KB
testcase_17 AC 105 ms
15,760 KB
testcase_18 AC 107 ms
15,856 KB
testcase_19 AC 106 ms
15,748 KB
testcase_20 AC 107 ms
15,788 KB
testcase_21 AC 100 ms
15,768 KB
testcase_22 AC 111 ms
15,676 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 1 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:23:42: warning: integer overflow in expression of type 'long long int' results in '-9223372036854775808' [-Woverflow]
   23 |   vector<vector<ll>> dp(N+1,vector<ll>(2,-INF));
      |                                          ^~~~
main.cpp:26:19: warning: integer overflow in expression of type 'long long int' results in '-9223372036854775808' [-Woverflow]
   26 |     if(dp[i][0] > -INF){
      |                   ^~~~
main.cpp:30:19: warning: integer overflow in expression of type 'long long int' results in '-9223372036854775808' [-Woverflow]
   30 |     if(dp[i][1] > -INF){
      |                   ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<int>>;

const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  int N; cin >> N;
  vector<ll> A(N);
  for(int i = 0; i < N; i++)
    cin >> A[i];
    
  // solve
  const ll INF = 1LL<<63;
  vector<vector<ll>> dp(N+1,vector<ll>(2,-INF));
  dp[0][0] = 0;
  for(int i = 0; i < N; i++){
    if(dp[i][0] > -INF){
      chmax(dp[i+1][0],dp[i][0]);
      chmax(dp[i+1][1],dp[i][0] - A[i]);
    }
    if(dp[i][1] > -INF){
      chmax(dp[i+1][1],dp[i][1]);
      chmax(dp[i+1][0],dp[i][1] + A[i]);
    }
  }
  
  // output
  cout << max(dp[N][0],dp[N][1]) << endl;
}
0