結果
問題 | No.672 最長AB列 |
ユーザー | vintersn0w |
提出日時 | 2018-05-08 15:57:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 79,824 KB |
実行使用メモリ | 22,400 KB |
最終ジャッジ日時 | 2024-06-28 02:27:18 |
合計ジャッジ時間 | 3,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <stdio.h> #include <cmath> #include <map> using namespace std; typedef uint uint32_t; int main() { string S; cin >> S; int N = S.length(); map<int, int> mr, ml; int c = 0; ml[0] = -1; for (int i = 0; i < N; i++) { if (S[i] == 'A') c++; else c--; if (ml.count(c) == 0) { ml[c] = i; } mr[c] = i; } int m = 0; for (auto itr = ml.begin(); itr != ml.end(); itr++) { if (mr.count(itr->first) == 0) continue; int rp = mr[itr->first]; int lp = itr->second; cout << itr->first << ' ' << itr->second << ' ' << rp << endl; m = max(m, rp - lp); } cout << m << endl; }