結果

問題 No.672 最長AB列
ユーザー 36_bocky36_bocky
提出日時 2018-04-13 23:30:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 69,368 KB
実行使用メモリ 17,728 KB
最終ジャッジ日時 2024-06-27 19:44:56
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 96 ms
17,728 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 14 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 74 ms
11,264 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:35:12: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
   35 |   printf("%d\n", ans);
      |           ~^     ~~~
      |            |     |
      |            int   long long int
      |           %lld

ソースコード

diff #

#include <iostream>
#include <utility>
#include <map>
#include <algorithm>

using namespace std;

typedef pair<long long , long long>p;

int main()
{
  long long rui[200001];
  
  map<long long, long long> mp;
  string str;
  long long ans = 0;

  cin >> str;

  for ( int i = 0; i < str.size(); i++) {
    if (str[i] == 'A' ) {
      rui[i + 1] = rui[i] + 1;
    } else {
      rui[i + 1] = rui[i] - 1;
    }

    if ( mp.count(rui[i + 1]) == 0 ) {
      mp[rui[i + 1]] = i + 1;
    } else {
      ans = max(ans, i + 1 - mp[rui[i + 1]] );
    }
    
  }

  printf("%d\n", ans);

  return (0);
}
0