結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー ninoinuininoinui
提出日時 2020-07-21 16:25:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 208,236 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-11-20 15:02:05
合計ジャッジ時間 3,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 36 ms
5,248 KB
testcase_16 AC 32 ms
5,248 KB
testcase_17 AC 35 ms
5,248 KB
testcase_18 AC 61 ms
5,248 KB
testcase_19 AC 41 ms
5,248 KB
testcase_20 AC 22 ms
5,248 KB
testcase_21 AC 11 ms
5,248 KB
testcase_22 AC 26 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 73 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++) cin >> A.at(i);
  set<int> SE;
  int mx = 0;
  for (int l = 0, r = 0; r < N; r++) {
    if (SE.count(A.at(r))) {
      while (A.at(l) != A.at(r)) SE.erase(A.at(l++));
      SE.erase(A.at(l++));
    }
    SE.insert(A.at(r));
    mx = max(mx, r - l + 1);
  }
  cout << mx << "\n";
}
0