結果

問題 No.1433 Two color sequence
ユーザー SAAD AHMADSAAD AHMAD
提出日時 2022-07-05 05:36:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 166,488 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-05-08 21:44:17
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 39 ms
6,784 KB
testcase_04 AC 39 ms
6,656 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 93 ms
6,784 KB
testcase_09 AC 91 ms
6,784 KB
testcase_10 AC 87 ms
6,632 KB
testcase_11 AC 88 ms
6,784 KB
testcase_12 AC 91 ms
6,784 KB
testcase_13 AC 91 ms
6,892 KB
testcase_14 AC 92 ms
6,656 KB
testcase_15 AC 92 ms
7,040 KB
testcase_16 AC 93 ms
6,912 KB
testcase_17 AC 95 ms
6,784 KB
testcase_18 AC 93 ms
6,784 KB
testcase_19 AC 93 ms
6,912 KB
testcase_20 AC 92 ms
6,784 KB
testcase_21 AC 92 ms
6,780 KB
testcase_22 AC 92 ms
6,784 KB
testcase_23 AC 94 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll a[200005];
ll b[200005];

int main(){
  int n; cin >> n;
  string s; cin >> s;
  for(int i = 0; i < n; i++){
    ll num; cin >> num;
    if(s[i] == 'R') a[i] = num;
    else a[i] = -num;
  }
  b[0] = 0;
  for(int i = 0; i < n; i++) b[i+1] = b[i] + a[i];
  ll M = -1e18;
  ll m = 1e18;
  for(int i = 0; i <= n; i++){
    M = max(M, b[i]);
    m = min(m, b[i]);
  }
  ll ans = M - m;
  cout << ans << endl;
  return 0;
}
0