結果
問題 | No.3009 異なる数字の最大の範囲(勉強会用) |
ユーザー | ramia777 |
提出日時 | 2022-04-24 12:04:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,992 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 96,148 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-06-12 22:38:45 |
合計ジャッジ時間 | 1,855 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 27 ms
11,904 KB |
testcase_16 | AC | 25 ms
11,648 KB |
testcase_17 | WA | - |
testcase_18 | AC | 43 ms
12,544 KB |
testcase_19 | AC | 31 ms
12,032 KB |
testcase_20 | AC | 21 ms
11,476 KB |
testcase_21 | AC | 15 ms
11,520 KB |
testcase_22 | AC | 23 ms
11,652 KB |
testcase_23 | AC | 17 ms
11,520 KB |
testcase_24 | AC | 31 ms
6,940 KB |
ソースコード
// // Yukicoder // No.3009 //#include "stdafx.h" #include <stdio.h> #include <iostream> #include <vector> #include <list>//list #include <set> //tree #include <map> //連想配列 #include <unordered_set> //hash #include <unordered_map> //hash #include <algorithm> #include <iomanip> #include <string> #include <stdlib.h> using namespace std; typedef unsigned long long ULL; typedef signed long long SLL; typedef unsigned int UINT; #define START (0) #define RIGHT (1) #define UP (2) #define LEFT (3) #define DOWN (4) #define DATA_MAX (1000000) #define FMAX(a,b) ((a)>(b)?(a):(b)) #define FMIN(a,b) ((a)<(b)?(a):(b)) vector <vector <SLL>> memo2;//二次元可変配列 vector<SLL> memo1; vector<SLL> c; vector<SLL> v; vector<SLL> dp; SLL H ,A, B, T, F, N, M, Result; UINT hashtable; SLL hashTable[1000005]; int main(int argc, char *argv[]) { SLL a[100005]; cin >> N; v.resize(N + 1); for (int i = 0; i < N; i++) { cin >> a[i]; } //cout << "-----" << endl; SLL L, R, ans=0, max_ans = 0,max_ans2 = 0; //Nが1以下のとき if (N <= 1) { cout << N << endl; return 0; } //Nが2以上のとき const int search_complete = 1; const int search_break = 0; int flag; SLL i; L = 0; R = L; flag = search_complete; do { if (hashTable[a[R]] == 0) { //バケット配列にインデックスをいれる(インデックス0と何もないの0を区別するために1から始める) hashTable[a[R]] = R+1; if (max_ans < R - L + 1 ) max_ans = R - L + 1; } else { flag = search_break; } //cout << "L=" << L << ",R=" << R << ",ans=" << max_ans << endl; if (flag == search_break) { ans = 0; if(L < hashTable[a[R]]) L = hashTable[a[R]]; //予め+1しているのでそのまま入れる hashTable[a[R]] = R+1; flag = search_complete; } R++; } while (R < N); cout << max_ans << endl; /////////////////// //cout << endl; //getchar(); return 0; //end }