結果
問題 | No.1433 Two color sequence |
ユーザー | katoru_perfperf |
提出日時 | 2021-03-26 20:18:25 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 2,940 ms |
コンパイル使用メモリ | 122,240 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-05-06 12:59:47 |
合計ジャッジ時間 | 4,024 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 38 ms
6,016 KB |
testcase_04 | AC | 38 ms
5,888 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <stdio.h> #include <limits.h> using namespace std; int MINIMUM = INT_MIN; int main() { int N; cin >> N; string S; cin >> S; vector<int> a(N); for (int i = 0; i < N; i++) { cin >> a.at(i); } for (int i = 0; i < N; i++) { if (S.at(i) == 'B') { a.at(i) *= (-1); } } vector<int> plusdp(N); vector<int> minusdp(N); plusdp.at(0) = a.at(0); minusdp.at(0) = (-1) * a.at(0); for (int i = 0; i < N-1; i++) { plusdp.at(i + 1) = max(a.at(i+1), plusdp.at(i) + a.at(i+1)); minusdp.at(i + 1) = max((-1)*a.at(i + 1), minusdp.at(i) - a.at(i + 1)); } /*for (int i = 0; i < N; i++) { cout << plusdp.at(i) << " "; } cout << endl; for (int i = 0; i < N; i++) { cout << minusdp.at(i) << " "; } cout << endl;*/ int MAX = MINIMUM; for (int i = 0; i < N; i++) { if (plusdp.at(i) > MAX) { MAX = plusdp.at(i); } if (minusdp.at(i) > MAX) { MAX = minusdp.at(i); } } cout << abs(MAX); }