結果
問題 | No.1433 Two color sequence |
ユーザー | Ricky_pon |
提出日時 | 2021-03-19 21:55:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,462 bytes |
コンパイル時間 | 2,151 ms |
コンパイル使用メモリ | 202,172 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-11-18 22:07:45 |
合計ジャッジ時間 | 3,983 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 28 ms
8,704 KB |
testcase_04 | AC | 27 ms
8,704 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 38 ms
8,556 KB |
testcase_10 | AC | 36 ms
8,360 KB |
testcase_11 | AC | 38 ms
8,288 KB |
testcase_12 | AC | 39 ms
8,480 KB |
testcase_13 | AC | 38 ms
8,556 KB |
testcase_14 | AC | 39 ms
8,696 KB |
testcase_15 | AC | 38 ms
8,472 KB |
testcase_16 | AC | 40 ms
8,704 KB |
testcase_17 | AC | 40 ms
8,704 KB |
testcase_18 | AC | 39 ms
8,600 KB |
testcase_19 | AC | 39 ms
8,576 KB |
testcase_20 | AC | 40 ms
8,576 KB |
testcase_21 | AC | 39 ms
8,600 KB |
testcase_22 | AC | 40 ms
8,576 KB |
testcase_23 | AC | 40 ms
8,704 KB |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for (int(i) = (int)(a); (i) < (int)(b); ++(i)) #define rFor(i, a, b) for (int(i) = (int)(a)-1; (i) >= (int)(b); --(i)) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair<int, int> pii; typedef pair<lint, lint> pll; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } template <class T> T div_floor(T a, T b) { if (b < 0) a *= -1, b *= -1; return a >= 0 ? a / b : (a + 1) / b - 1; } template <class T> T div_ceil(T a, T b) { if (b < 0) a *= -1, b *= -1; return a > 0 ? (a - 1) / b + 1 : a / b; } constexpr lint mod = 1000000007; constexpr lint INF = mod * mod; constexpr int MAX = 200010; int f(char c) { return c == 'R' ? 0 : 1; } int main() { int n; string s; cin >> n >> s; lint a[n]; rep(i, n) scanf("%lld", &a[i]); lint dp[n][2]; rep(i, n + 1) rep(j, 2) dp[i][j] = 0; rep(i, n) rep(j, 2) { lint tmp = dp[i][j] + a[i] * (f(s[i]) == j ? 1 : -1); chmax(dp[i + 1][j ^ (tmp < 0)], abs(tmp)); } lint ans = 0; rep(i, n + 1) rep(j, 2) chmax(ans, dp[i][j]); printf("%lld\n", ans); }