結果
問題 | No.1788 Same Set |
ユーザー | 👑 tute7627 |
提出日時 | 2021-12-01 20:41:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 3,250 ms |
コンパイル使用メモリ | 223,008 KB |
実行使用メモリ | 13,980 KB |
最終ジャッジ日時 | 2024-09-13 23:12:09 |
合計ジャッジ時間 | 10,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,980 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | RE | - |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 72 ms
7,168 KB |
testcase_12 | AC | 80 ms
7,168 KB |
testcase_13 | AC | 87 ms
7,168 KB |
testcase_14 | AC | 102 ms
7,168 KB |
testcase_15 | AC | 129 ms
7,168 KB |
testcase_16 | AC | 196 ms
7,296 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int>a(n), b(n); for(int i = 0; i < n; i++)cin >> a[i]; for(int i = 0; i < n; i++)cin >> b[i]; vector<int>c(n); const int sz = 200005; vector<int> pre_a(sz, -1), pre_b(sz, -1); long long ans = 0; int csum = 0; for(int i = 0; i < n; i++){ vector<int>upd; upd.push_back(a[i]); if(a[i] != b[i])upd.push_back(b[i]); for(auto val:upd){ int l = min(pre_a[val], pre_b[val]); int r = max(pre_a[val], pre_b[val]); for(int i = l + 1; i < r + 1; i++){ c[i]--; if(c[i] == 0)csum--; } } pre_a[a[i]] = i; pre_b[b[i]] = i; for(auto val:upd){ int l = min(pre_a[val], pre_b[val]); int r = max(pre_a[val], pre_b[val]); for(int i = l + 1; i < r + 1; i++){ if(c[i] == 0)csum++; c[i]++; } } ans += i + 1 - csum; } cout << ans << endl; }