結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー krotonkroton
提出日時 2015-02-28 16:29:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,808 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 1,295 ms
コンパイル使用メモリ 158,496 KB
実行使用メモリ 7,668 KB
最終ジャッジ日時 2024-11-20 14:59:57
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,244 KB
testcase_01 AC 3 ms
7,264 KB
testcase_02 AC 4 ms
7,336 KB
testcase_03 AC 4 ms
7,340 KB
testcase_04 AC 4 ms
7,392 KB
testcase_05 AC 3 ms
7,376 KB
testcase_06 AC 4 ms
7,192 KB
testcase_07 AC 4 ms
7,356 KB
testcase_08 AC 4 ms
7,348 KB
testcase_09 AC 4 ms
7,264 KB
testcase_10 AC 4 ms
7,080 KB
testcase_11 AC 3 ms
7,408 KB
testcase_12 AC 3 ms
7,356 KB
testcase_13 AC 4 ms
7,312 KB
testcase_14 AC 3 ms
7,408 KB
testcase_15 AC 113 ms
7,392 KB
testcase_16 AC 97 ms
7,564 KB
testcase_17 AC 117 ms
7,336 KB
testcase_18 AC 184 ms
7,664 KB
testcase_19 AC 130 ms
7,380 KB
testcase_20 AC 71 ms
7,492 KB
testcase_21 AC 28 ms
7,128 KB
testcase_22 AC 77 ms
7,468 KB
testcase_23 AC 42 ms
7,484 KB
testcase_24 AC 3,808 ms
7,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// もしかして通ったりして
#include <bits/stdc++.h>
using namespace std;

int N, A[100000];
int used[1000010];

int main(){
    memset(used, -1, sizeof(used));

    cin >> N;
    for(int i=0;i<N;i++){
        cin >> A[i];
    }

    int res = 0;
    for(int i=0;i<N;i++){
        int j = i;
        while(j < N && used[A[j]] != i){
            used[A[j]] = i;
            ++j;
        }

        res = max(res, j - i);
    }

    cout << res << endl;
    return 0;
}
0