結果

問題 No.1698 Face to Face
ユーザー 👑 NachiaNachia
提出日時 2021-10-02 00:29:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 460 ms / 5,000 ms
コード長 3,205 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 120,244 KB
実行使用メモリ 44,204 KB
最終ジャッジ日時 2024-07-19 18:28:48
合計ジャッジ時間 14,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 304 ms
42,024 KB
testcase_04 AC 314 ms
43,696 KB
testcase_05 AC 377 ms
42,824 KB
testcase_06 AC 368 ms
42,896 KB
testcase_07 AC 334 ms
43,240 KB
testcase_08 AC 342 ms
42,952 KB
testcase_09 AC 338 ms
43,164 KB
testcase_10 AC 303 ms
44,204 KB
testcase_11 AC 366 ms
42,848 KB
testcase_12 AC 418 ms
42,760 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 460 ms
42,844 KB
testcase_16 AC 459 ms
42,900 KB
testcase_17 AC 460 ms
42,956 KB
testcase_18 AC 393 ms
39,972 KB
testcase_19 AC 391 ms
39,756 KB
testcase_20 AC 373 ms
38,924 KB
testcase_21 AC 183 ms
21,904 KB
testcase_22 AC 135 ms
19,316 KB
testcase_23 AC 29 ms
7,348 KB
testcase_24 AC 213 ms
23,404 KB
testcase_25 AC 419 ms
41,276 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 88 ms
12,864 KB
testcase_28 AC 100 ms
13,496 KB
testcase_29 AC 68 ms
11,616 KB
testcase_30 AC 254 ms
25,084 KB
testcase_31 AC 185 ms
21,696 KB
testcase_32 AC 316 ms
36,288 KB
testcase_33 AC 321 ms
36,352 KB
testcase_34 AC 431 ms
41,540 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 349 ms
43,492 KB
testcase_46 AC 346 ms
43,232 KB
testcase_47 AC 400 ms
43,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <atcoder/segtree>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


const int maxN = 100000;

namespace RQ{
  struct S { int Amax, Bmax, q, i; };
  S op(S l, S r){
    S res = {
      max(l.Amax,r.Amax),
      max(l.Bmax,r.Bmax),
      0,0
    };
    res.q = max(l.q,r.Bmax);
    res.i = l.i;
    if(res.q > max(l.Amax,r.q)){
      res.q = max(l.Amax,r.q);
      res.i = r.i;
    }
    return res;
  }
  S e(){ return { 0,0,maxN*2,0 }; }
  using RQ = atcoder::segtree<S,op,e>;
  RQ createRQ1(int N, const vector<int>& A, const vector<int>& B){
    vector<S> tmp(2*N-1);
    rep(i,N-1) tmp[2*i+1].Amax = max(A[i],A[i+1]);
    rep(i,N-1) tmp[2*i+1].Bmax = max(B[i],B[i+1]);
    rep(i,N-1) tmp[2*i+1].q = max(tmp[2*i+1].Amax, tmp[2*i+1].Bmax);
    rep(i,2*N-1) tmp[i].i = i/2;
    auto t = op(tmp[4],tmp[5]);
    return RQ(tmp);
  }
  RQ createRQ2(int N, const vector<int>& A, const vector<int>& B){
    vector<S> tmp(2*N-1);
    rep(i,N-1) tmp[2*i+1].Bmax = max(A[i],A[i+1]);
    rep(i,N-1) tmp[2*i+1].Amax = max(B[i],B[i+1]);
    rep(i,N-1) tmp[2*i+1].q = max(tmp[2*i+1].Amax, tmp[2*i+1].Bmax);
    rep(i,2*N-1) tmp[i].i = i/2;
    return RQ(tmp);
  }
}


struct CompNode{
  int pos;
  int type;
  bool operator<(const CompNode& r) const {
    if(pos != r.pos) return pos < r.pos;
    return type < r.type;
  }
};

struct ValNode{
  int w;
  int cnt;
};


int main(){
  int N; cin >> N;
  vector<int> A(N); rep(i,N){ cin >> A[i]; A[i]--; }
  vector<int> B(N); rep(i,N){ cin >> B[i]; B[i]--; }
  vector<int> Z(N); rep(i,N){ cin >> Z[i]; Z[i]--; }
  vector<int> invA(N); rep(i,N) invA[A[i]] = i;
  vector<int> invB(N); rep(i,N) invB[B[i]] = i;

  map<CompNode, ValNode> G;
  rep(i,N+1) G[{i,0}] = {0,0};
  rep(i,N+1) G[{i,1}] = {0,0};
  for(int i=1; i<=N; i++) G[{i,0}].w += 1;

  auto rq1 = RQ::createRQ1(N,A,B);
  auto rq2 = RQ::createRQ2(N,A,B);
  vector<vector<int>> toAddCnt(N);
  rep(i,N){
    int za = invA[i], zb = invB[Z[i]];
    RQ::S q;
    if(za <= zb) q = rq1.prod(za*2, zb*2+1);
    else q = rq2.prod(zb*2, za*2+1);
    toAddCnt[q.q].push_back(q.i);
  }

  vector<vector<CompNode>> toEraseSep(N);
  rep(i,N-1) toEraseSep[max(A[i],A[i+1])].push_back({i+1,0});
  rep(i,N-1) toEraseSep[max(B[i],B[i+1])].push_back({i+1,1});

  int ans = 0;

  rep(i,N){
    for(auto s : toEraseSep[i]){
      auto itr = G.find(s);
      auto nxitr = itr; nxitr++;
      ans -= min(itr->second.cnt, itr->second.w);
      ans -= min(nxitr->second.cnt, nxitr->second.w);
      nxitr->second.cnt += itr->second.cnt;
      nxitr->second.w += itr->second.w;
      ans += min(nxitr->second.cnt, nxitr->second.w);
      G.erase(itr);
    }
    for(auto s : toAddCnt[i]){
      auto itr = G.upper_bound({s,2});
      ans -= min(itr->second.cnt, itr->second.w);
      itr->second.cnt += 1;
      ans += min(itr->second.cnt, itr->second.w);
    }
    cout << ans << endl;
  }

  return 0;
}




struct ios_do_not_sync {
    ios_do_not_sync() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0