Submission #63809503
Source Code Expand
Copy
#include <bits/stdc++.h>using namespace std;#define rep(i, n) for (int i = 0; i < n; i++)using ll = long long;template <typename T>using type_matrix = vector<vector<T>>;struct hash_func {// ハッシュ衝突を避けるためゴールデンレシオ定数(0x9e3779b9)を使用static constexpr size_t GOLDEN_RATIO = 0x9e3779b9;template <typename T1, typename T2>size_t operator()(const pair<T1, T2>& P) const {size_t h1 = hash<T1>{}(P.first);size_t h2 = hash<T2>{}(P.second);return h1 ^ (h2 * GOLDEN_RATIO + (h1 << 6) + (h1 >> 2));}template <typename... T>size_t operator()(const tuple<T...>& t) const {size_t seed = 0;apply([&](const auto&... args) {((seed ^= hash<decay_t<decltype(args)>>{}(args) + GOLDEN_RATIO + (seed << 6) + (seed >> 2)), ...);}, t);
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < n; i++) using ll = long long; template <typename T> using type_matrix = vector<vector<T>>; struct hash_func { // ハッシュ衝突を避けるためゴールデンレシオ定数(0x9e3779b9)を使用 static constexpr size_t GOLDEN_RATIO = 0x9e3779b9; template <typename T1, typename T2> size_t operator()(const pair<T1, T2>& P) const { size_t h1 = hash<T1>{}(P.first); size_t h2 = hash<T2>{}(P.second); return h1 ^ (h2 * GOLDEN_RATIO + (h1 << 6) + (h1 >> 2)); } template <typename... T> size_t operator()(const tuple<T...>& t) const { size_t seed = 0; apply([&](const auto&... args) { ((seed ^= hash<decay_t<decltype(args)>>{}(args) + GOLDEN_RATIO + (seed << 6) + (seed >> 2)), ...); }, t); return seed; } }; #ifndef ONLINE_JUDGE #include <../../../lib.hpp> #endif #ifndef ONLINE_JUDGE // ローカルテスト関数定義 #endif int main() { int n; cin >> n; vector<int> A(n); rep(i, n) cin >> A[i]; vector<int> C1(n); vector<int> C2(n); unordered_set<int> S; for (int i = 0; i < n; i++) { S.insert(A[i]); C1[i] = (int)S.size(); } S.clear(); for (int i = n-1; i >= 0; i--) { S.insert(A[i]); C2[i] = (int)S.size(); } int ans = 0; rep(i, n-1) { ans = max(ans, C1[i] + C2[i+1]); } cout << ans << endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | C - Variety Split Easy |
User | yuu0252 |
Language | C++ 23 (gcc 12.2) |
Score | 350 |
Code Size | 1511 Byte |
Status | AC |
Exec Time | 96 ms |
Memory | 18928 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 350 / 350 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | 00_sample_00.txt, 00_sample_01.txt |
All | 00_sample_00.txt, 00_sample_01.txt, 01_test_00.txt, 01_test_01.txt, 01_test_02.txt, 01_test_03.txt, 01_test_04.txt, 01_test_05.txt, 01_test_06.txt, 01_test_07.txt, 01_test_08.txt, 01_test_09.txt, 01_test_10.txt, 01_test_11.txt, 01_test_12.txt, 01_test_13.txt, 01_test_14.txt, 01_test_15.txt, 01_test_16.txt, 01_test_17.txt, 01_test_18.txt, 01_test_19.txt, 01_test_20.txt, 01_test_21.txt, 01_test_22.txt, 01_test_23.txt, 01_test_24.txt, 01_test_25.txt, 01_test_26.txt, 01_test_27.txt, 01_test_28.txt, 01_test_29.txt, 01_test_30.txt, 01_test_31.txt, 01_test_32.txt, 01_test_33.txt, 01_test_34.txt, 01_test_35.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
00_sample_00.txt | AC | 1 ms | 3488 KB |
00_sample_01.txt | AC | 1 ms | 3484 KB |
01_test_00.txt | AC | 1 ms | 3476 KB |
01_test_01.txt | AC | 1 ms | 3580 KB |
01_test_02.txt | AC | 1 ms | 3536 KB |
01_test_03.txt | AC | 1 ms | 3564 KB |
01_test_04.txt | AC | 1 ms | 3536 KB |
01_test_05.txt | AC | 22 ms | 6556 KB |
01_test_06.txt | AC | 88 ms | 16272 KB |
01_test_07.txt | AC | 28 ms | 7216 KB |
01_test_08.txt | AC | 89 ms | 16104 KB |
01_test_09.txt | AC | 78 ms | 12816 KB |
01_test_10.txt | AC | 96 ms | 16028 KB |
01_test_11.txt | AC | 21 ms | 6552 KB |
01_test_12.txt | AC | 89 ms | 16096 KB |
01_test_13.txt | AC | 12 ms | 5052 KB |
01_test_14.txt | AC | 89 ms | 16028 KB |
01_test_15.txt | AC | 69 ms | 9008 KB |
01_test_16.txt | AC | 77 ms | 11516 KB |
01_test_17.txt | AC | 79 ms | 12148 KB |
01_test_18.txt | AC | 83 ms | 12920 KB |
01_test_19.txt | AC | 86 ms | 15992 KB |
01_test_20.txt | AC | 29 ms | 6592 KB |
01_test_21.txt | AC | 56 ms | 6672 KB |
01_test_22.txt | AC | 59 ms | 6568 KB |
01_test_23.txt | AC | 56 ms | 6612 KB |
01_test_24.txt | AC | 56 ms | 6604 KB |
01_test_25.txt | AC | 71 ms | 18800 KB |
01_test_26.txt | AC | 89 ms | 18916 KB |
01_test_27.txt | AC | 1 ms | 3492 KB |
01_test_28.txt | AC | 1 ms | 3484 KB |
01_test_29.txt | AC | 74 ms | 16108 KB |
01_test_30.txt | AC | 52 ms | 8004 KB |
01_test_31.txt | AC | 47 ms | 7224 KB |
01_test_32.txt | AC | 72 ms | 18840 KB |
01_test_33.txt | AC | 71 ms | 18832 KB |
01_test_34.txt | AC | 72 ms | 18920 KB |
01_test_35.txt | AC | 72 ms | 18928 KB |