結果

問題 No.1788 Same Set
ユーザー KudeKude
提出日時 2021-12-17 08:16:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 469 ms / 4,000 ms
コード長 1,798 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 232,908 KB
実行使用メモリ 13,188 KB
最終ジャッジ日時 2024-09-14 08:18:43
合計ジャッジ時間 14,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
6,940 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 68 ms
12,932 KB
testcase_12 AC 179 ms
12,932 KB
testcase_13 AC 217 ms
12,908 KB
testcase_14 AC 291 ms
13,188 KB
testcase_15 AC 342 ms
13,064 KB
testcase_16 AC 362 ms
12,904 KB
testcase_17 AC 301 ms
13,068 KB
testcase_18 AC 348 ms
13,064 KB
testcase_19 AC 235 ms
13,060 KB
testcase_20 AC 83 ms
13,064 KB
testcase_21 AC 356 ms
13,064 KB
testcase_22 AC 422 ms
12,936 KB
testcase_23 AC 304 ms
13,064 KB
testcase_24 AC 344 ms
13,068 KB
testcase_25 AC 464 ms
13,068 KB
testcase_26 AC 469 ms
12,940 KB
testcase_27 AC 92 ms
12,940 KB
testcase_28 AC 428 ms
13,064 KB
testcase_29 AC 451 ms
12,936 KB
testcase_30 AC 93 ms
13,064 KB
testcase_31 AC 455 ms
13,068 KB
testcase_32 AC 402 ms
12,936 KB
testcase_33 AC 410 ms
13,064 KB
testcase_34 AC 422 ms
13,000 KB
testcase_35 AC 402 ms
13,064 KB
testcase_36 AC 407 ms
12,940 KB
testcase_37 AC 410 ms
13,064 KB
testcase_38 AC 406 ms
13,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic pop
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) { a = max(a, b); }
template<class T> void chmin(T& a, const T& b) { a = min(a, b); }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

constexpr int INF = 1001001001;
struct S { int min = INF, cnt = 0; };
S op(S x, S y) {
  if (x.min == y.min) return {x.min, x.cnt + y.cnt};
  else if (x.min < y.min) return x;
  else return y;
}
S e() { return S(); }
int composition(int f, int g) { return f + g; }
int id() { return 0; }
S mapping(int f, S x) { return {x.min + f, x.cnt}; }

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VI a(n), b(n);
  rep(i, n) cin >> a[i];
  rep(i, n) cin >> b[i];
  lazy_segtree<S, op, e, int, mapping, composition, id> seg(vector<S>(n, S{0, 1}));
  constexpr int MX = 400000;
  VI last_a(MX + 1, -1), last_b(MX + 1, -1);
  ll ans = 0;
  rep(i, n) {
    int x = a[i], y = b[i];
    if (last_a[x] < last_b[x]) seg.apply(last_a[x] + 1, last_b[x] + 1, -1);
    if (last_b[y] < last_a[y]) seg.apply(last_b[y] + 1, last_a[y] + 1, -1);
    if (x != y) {
      seg.apply(max(last_a[x], last_b[x]) + 1, i + 1, 1);
      seg.apply(max(last_a[y], last_b[y]) + 1, i + 1, 1);
    }
    last_a[x] = i;
    last_b[y] = i;
    auto [mn, cnt] = seg.prod(0, i + 1);
    if (mn == 0) ans += cnt;
  }
  cout << ans << '\n';
}
0