結果

問題 No.1209 XOR Into You
ユーザー RhoRho
提出日時 2020-07-29 01:57:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,224 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 185,352 KB
実行使用メモリ 80,716 KB
最終ジャッジ日時 2024-06-28 21:09:30
合計ジャッジ時間 11,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
72,656 KB
testcase_01 AC 53 ms
72,380 KB
testcase_02 AC 55 ms
71,252 KB
testcase_03 AC 55 ms
71,104 KB
testcase_04 AC 124 ms
72,208 KB
testcase_05 AC 124 ms
72,284 KB
testcase_06 AC 147 ms
75,324 KB
testcase_07 AC 233 ms
79,048 KB
testcase_08 AC 214 ms
78,216 KB
testcase_09 AC 208 ms
78,220 KB
testcase_10 AC 178 ms
77,424 KB
testcase_11 AC 205 ms
78,324 KB
testcase_12 AC 197 ms
77,580 KB
testcase_13 AC 222 ms
78,396 KB
testcase_14 AC 196 ms
77,804 KB
testcase_15 AC 198 ms
77,996 KB
testcase_16 AC 203 ms
77,600 KB
testcase_17 AC 191 ms
77,296 KB
testcase_18 AC 269 ms
80,232 KB
testcase_19 AC 199 ms
77,468 KB
testcase_20 AC 230 ms
78,744 KB
testcase_21 AC 177 ms
76,600 KB
testcase_22 AC 207 ms
80,716 KB
testcase_23 AC 205 ms
80,592 KB
testcase_24 AC 201 ms
80,600 KB
testcase_25 AC 273 ms
80,680 KB
testcase_26 AC 267 ms
80,660 KB
testcase_27 AC 261 ms
80,560 KB
testcase_28 AC 265 ms
80,600 KB
testcase_29 AC 265 ms
80,596 KB
testcase_30 AC 266 ms
80,672 KB
testcase_31 AC 171 ms
75,324 KB
testcase_32 AC 171 ms
75,324 KB
testcase_33 AC 171 ms
75,324 KB
testcase_34 AC 178 ms
75,448 KB
testcase_35 AC 179 ms
75,580 KB
testcase_36 AC 179 ms
75,452 KB
testcase_37 AC 146 ms
75,448 KB
testcase_38 AC 220 ms
79,164 KB
testcase_39 AC 204 ms
78,276 KB
testcase_40 AC 217 ms
80,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define rep(i,n) for(int i=0;i<n;i++)
#define vi vector<int>
#define all(a) a.begin(),a.end()
typedef pair<int,int> P;
const long long mod=998244353;
const long long inf=1ll<<61;

int BIT[100006];
int a[100006],b[100006];
void add(int i,int x){
  while(i<=100002){
    BIT[i]+=x;
    i+=i&-i;
  }
}
int sum(int i){
  int s=0;
  while(i>0){
    s+=BIT[i];
    i-=i&-i;
  }
  return s;
}

bool eq(vi a,vi b){
  sort(all(a));
  sort(all(b));
  return a==b;
}

deque<int>Q[100006];
signed main(){
  int n;cin>>n;
  rep(i,n)cin>>a[i];
  rep(i,n)cin>>b[i];
  if(a[0]!=b[0]||a[n-1]!=b[n-1]){
    cout<<-1<<endl;
    return 0;
  }
  vector<int>na,nb;
  rep(i,n-1){
    na.push_back(a[i]^a[i+1]);
    nb.push_back(b[i]^b[i+1]);
  }
  if(!eq(na,nb)){
    cout<<-1<<endl;
    return 0;
  }
  map<int,int>M;
  n--;
  rep(i,n)M[na[i]]++;
  int cn=0;
  for(auto itr=M.begin();itr!=M.end();itr++){
    M[itr->first]=cn;cn++;
  }
  rep(i,n){
    na[i]=M[na[i]];nb[i]=M[nb[i]];
  }
  rep(i,n){
    Q[na[i]].push_back(i);
    add(i+1,1);
  }
  int ans=0;
  rep(i,n){
    int k=Q[nb[i]].front();Q[nb[i]].pop_front();
    ans+=sum(k);
    add(k+1,-1);
  }
  cout<<ans<<endl;
}
0