結果
問題 | No.1433 Two color sequence |
ユーザー | milanis48663220 |
提出日時 | 2021-03-19 22:03:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 1,323 bytes |
コンパイル時間 | 908 ms |
コンパイル使用メモリ | 97,356 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-11-18 22:25:06 |
合計ジャッジ時間 | 2,626 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 18 ms
8,320 KB |
testcase_04 | AC | 17 ms
8,320 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 29 ms
8,448 KB |
testcase_09 | AC | 30 ms
8,320 KB |
testcase_10 | AC | 30 ms
8,192 KB |
testcase_11 | AC | 29 ms
8,192 KB |
testcase_12 | AC | 32 ms
8,448 KB |
testcase_13 | AC | 30 ms
8,320 KB |
testcase_14 | AC | 29 ms
8,448 KB |
testcase_15 | AC | 30 ms
8,448 KB |
testcase_16 | AC | 29 ms
8,448 KB |
testcase_17 | AC | 30 ms
8,448 KB |
testcase_18 | AC | 29 ms
8,320 KB |
testcase_19 | AC | 29 ms
8,320 KB |
testcase_20 | AC | 30 ms
8,448 KB |
testcase_21 | AC | 30 ms
8,448 KB |
testcase_22 | AC | 31 ms
8,320 KB |
testcase_23 | AC | 30 ms
8,448 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; ll calc(string s, vector<ll> a){ int n = a.size(); vector<ll> cumsum(n+1); for(int i = 0; i < n; i++){ if(s[i] == 'R') cumsum[i+1] = cumsum[i]+a[i]; else if(s[i] == 'B') cumsum[i+1] = cumsum[i]-a[i]; } ll ans = 0; ll cur = 0; for(int i = 1; i <= n; i++){ chmax(ans, cumsum[i]-cur); chmin(cur, cumsum[i]); } return ans; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; string s; cin >> s; vector<ll> a(n); for(int i = 0; i < n; i++){ cin >> a[i]; } ll ans1 = calc(s, a); for(int i = 0; i < n; i++) a[i] = -a[i]; ll ans2 = calc(s, a); cout << max(ans1, ans2) << endl; }