結果
問題 | No.1788 Same Set |
ユーザー | chineristAC |
提出日時 | 2022-09-24 04:36:22 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 571 ms / 4,000 ms |
コード長 | 3,044 bytes |
コンパイル時間 | 5,710 ms |
コンパイル使用メモリ | 229,408 KB |
実行使用メモリ | 14,756 KB |
最終ジャッジ日時 | 2024-12-22 05:49:00 |
合計ジャッジ時間 | 21,265 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,820 KB |
testcase_01 | AC | 4 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 4 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,816 KB |
testcase_05 | AC | 4 ms
6,820 KB |
testcase_06 | AC | 5 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,820 KB |
testcase_08 | AC | 4 ms
6,816 KB |
testcase_09 | AC | 4 ms
6,820 KB |
testcase_10 | AC | 4 ms
6,820 KB |
testcase_11 | AC | 205 ms
14,752 KB |
testcase_12 | AC | 290 ms
14,752 KB |
testcase_13 | AC | 331 ms
14,756 KB |
testcase_14 | AC | 420 ms
14,588 KB |
testcase_15 | AC | 481 ms
14,580 KB |
testcase_16 | AC | 498 ms
14,672 KB |
testcase_17 | AC | 347 ms
14,720 KB |
testcase_18 | AC | 438 ms
14,636 KB |
testcase_19 | AC | 275 ms
14,568 KB |
testcase_20 | AC | 267 ms
14,576 KB |
testcase_21 | AC | 496 ms
14,692 KB |
testcase_22 | AC | 528 ms
14,572 KB |
testcase_23 | AC | 451 ms
14,636 KB |
testcase_24 | AC | 499 ms
14,592 KB |
testcase_25 | AC | 559 ms
14,488 KB |
testcase_26 | AC | 571 ms
14,676 KB |
testcase_27 | AC | 310 ms
14,756 KB |
testcase_28 | AC | 528 ms
14,608 KB |
testcase_29 | AC | 555 ms
14,676 KB |
testcase_30 | AC | 328 ms
14,680 KB |
testcase_31 | AC | 535 ms
14,596 KB |
testcase_32 | AC | 491 ms
14,672 KB |
testcase_33 | AC | 476 ms
14,604 KB |
testcase_34 | AC | 484 ms
14,580 KB |
testcase_35 | AC | 479 ms
14,660 KB |
testcase_36 | AC | 463 ms
14,656 KB |
testcase_37 | AC | 462 ms
14,688 KB |
testcase_38 | AC | 466 ms
14,572 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <iostream> #include <vector> #include <string> #include <map> #include <set> #include <queue> #include <algorithm> #include <cmath> #include <iomanip> #include <random> #include <stdio.h> #include <fstream> #include <functional> #include <cassert> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for (int i=0;i<n;i+=1) #define append push_back #define all(x) (x).begin(), (x).end() template<class T> using vec = vector<T>; template<class T> using vvec = vec<vec<T>>; template<class T> using vvvec = vec<vvec<T>>; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; template<class T> bool chmin(T &a, T b){ if (a>b){ a = b; return true; } return false; } template<class T> bool chmax(T &a, T b){ if (a<b){ a = b; return true; } return false; } template<class T> T sum(vec<T> x){ T res=0; for (auto e:x){ res += e; } return res; } template<class T> void printv(vec<T> x){ for (auto e:x){ cout<<e<<" "; } cout<<"\n"; } template<class T> ostream& operator<<(ostream& os, const vec<T>& A){ os << "["; rep(i,A.size()){ os << A[i]; if (i!=A.size()-1){ os << ", "; } } os << "]" ; return os; } template<class T> ostream& operator<<(ostream& os, const deque<T>& A){ os << "deque{["; rep(i,A.size()){ os << A[i]; if (i!=A.size()-1){ os << ", "; } } os << "]}" ; return os; } template<class T> ostream& operator<<(ostream& os, const pair<T,T>& A){ os << "("; os << A.first ; os << ", "; os << A.second; os << ")"; return os; } struct S{ int val,cnt; }; S op(S a,S b){ if (a.val < b.val){ return a; } if (b.val < a.val){ return b; } return {a.val,a.cnt+b.cnt}; } S e(){ return {(int)1e9,0}; } using F = int; S mapping(F f,S x){ return {x.val+f,x.cnt}; } F composition(F f,F g){ return f+g; } F id(){ return 0; } int main() { ios::sync_with_stdio(false); std::cin.tie(nullptr); int N; cin>>N; vec<int> A(N),B(N); rep(i,N){cin>>A[i];} rep(i,N){cin>>B[i];} int M = 4e5; vec<int> first_A(M+1,N); vec<int> first_B(M+1,N); vec<S> init(N,{0,1}); lazy_segtree<S,op,e,F,mapping,composition,id> seg(init); ll res = 0; int l,r; for (int i=N-1;0<=i;i--){ l = min(first_A[A[i]],first_B[A[i]]); r = max(first_A[A[i]],first_B[A[i]]); seg.apply(l,r,-1); first_A[A[i]] = i; l = min(first_A[A[i]],first_B[A[i]]); r = max(first_A[A[i]],first_B[A[i]]); seg.apply(l,r,1); l = min(first_A[B[i]],first_B[B[i]]); r = max(first_A[B[i]],first_B[B[i]]); seg.apply(l,r,-1); first_B[B[i]] = i; l = min(first_A[B[i]],first_B[B[i]]); r = max(first_A[B[i]],first_B[B[i]]); seg.apply(l,r,1); S tmp = seg.prod(i,N); //cout << tmp.val << " " << tmp.cnt << endl; if (tmp.val==0){ res += (ll)tmp.cnt; } } cout << res << endl; }