結果
問題 | No.2656 XOR Slimes |
ユーザー | hamamu |
提出日時 | 2024-02-04 16:29:35 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 28,274 bytes |
コンパイル時間 | 12,693 ms |
コンパイル使用メモリ | 358,328 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-29 11:48:37 |
合計ジャッジ時間 | 13,886 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 55 |
ソースコード
#if !defined(MYLOCAL)//提出時用テンプレート #pragma GCC optimize("Ofast") #if defined(NDEBUG) #undef NDEBUG #endif #include "bits/stdc++.h" #if !defined(_MSC_VER) && __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif #define _HAS_STD_BYTE 0//testlibのbyteがstd::byteと競合するため、std::byteを無効化 #define FOR_LINUX #include "testlib.h" using namespace std; using ll=long long; using dd=double; using vll=vector< ll>; using vdd=vector< dd>; using vvll=vector< vll>; using vvdd=vector<vdd>; using vvvll=vector< vvll>; using vvvdd=vector<vvdd>; using vvvvll=vector<vvvll>; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; using qll=tuple<ll,ll,ll,ll>; using vpll=vector< pll>; using vtll=vector< tll>; using vqll=vector< qll>; using vvpll=vector<vpll>; using vvtll=vector<vtll>; using vvqll=vector<vqll>; using namespace chrono; constexpr ll INF = 1001001001001001001; struct Fast{ Fast(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(numeric_limits<double>::max_digits10); } } fast; #define REPS(i, S, E) for (ll i = (S); i <= (E); i++) #define REP(i, N) REPS(i, 0, (N)-1) #define DEPS(i, S, E) for (ll i = (E); i >= (S); i--) #define DEP(i, N) DEPS(i, 0, (N)-1) #define EXPAND( x ) x//VS用おまじない #define overload3(_1,_2,_3,name,...) name #define overload4(_1,_2,_3,_4,name,...) name #define overload5(_1,_2,_3,_4,_5,name,...) name #define rep3(i, S, E) for (ll i = (S); i <= (E); i++) #define rep4(i, S, E, t) for (ll i = (S); i <= (E); i+=(t)) #define rep(...) EXPAND(overload4(__VA_ARGS__,rep4,rep3,_,_)(__VA_ARGS__)) #define dep3(i, E, S) for (ll i = (E); i >= (S); i--) #define dep4(i, E, S, t) for (ll i = (E); i >= (S); i-=(t)) #define dep(...) EXPAND(overload4(__VA_ARGS__, dep4, dep3,_,_)(__VA_ARGS__)) #define each2(e,v) for (auto && e:v) #define each3(a,b,v) for (auto &&[a,b]:v) #define each4(a,b,c,v) for (auto &&[a,b,c]:v) #define each5(a,b,c,d,v) for (auto &&[a,b,c,d]:v) #define each(...) EXPAND(overload5(__VA_ARGS__,each5,each4,each3,each2,_)(__VA_ARGS__)) #define ALL1(v) (v).begin(), (v).end() #define ALL2(v,E) (v).begin(), (v).begin()+((E)+1) #define ALL3(v,S,E) (v).begin()+(S), (v).begin()+((E)+1) #define ALL(...) EXPAND(overload3(__VA_ARGS__, ALL3, ALL2, ALL1)(__VA_ARGS__)) #define all ALL #define RALL1(v) (v).rbegin(), (v).rend() #define RALL2(v,E) (v).rbegin(), (v).rbegin()+((E)+1) #define RALL3(v,S,E) (v).rbegin()+(S), (v).rbegin()+((E)+1) #define RALL(...) EXPAND(overload3(__VA_ARGS__, RALL3, RALL2, RALL1)(__VA_ARGS__)) #define rall RALL template<class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; }return false; } template<class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; }return false; } template<class T> inline T MaxE(vector<T>&v,ll S,ll E){ T m=v[S]; rep(i,S,E)chmax(m,v[i]); return m; } template<class T> inline T MinE(vector<T>&v,ll S,ll E){ T m=v[S]; rep(i,S,E)chmin(m,v[i]); return m; } template<class T> inline T MaxE(vector<T> &v) { return MaxE(v,0,(ll)v.size()-1); } template<class T> inline T MinE(vector<T> &v) { return MinE(v,0,(ll)v.size()-1); } template<class T> inline auto maxe(T &&v,ll S,ll E){ return *max_element(ALL(v,S,E)); } template<class T> inline auto maxe(T &&v){ return *max_element(ALL(v)); } template<class T> inline auto mine(T &&v,ll S,ll E){ return *min_element(ALL(v,S,E)); } template<class T> inline auto mine(T &&v){ return *min_element(ALL(v)); } template<class T> inline T Sum(vector<T> &v,ll S,ll E){ T s=T(); rep(i,S,E)s+=v[i]; return s; } template<class T> inline T Sum(vector<T> &v) { return Sum(v,0,v.size()-1); } template<class T,class U=typename remove_reference<T>::type::value_type> inline U sum(T &&v,ll S,ll E) {return accumulate(all(v,S,E),U());} template<class T> inline auto sum(T &&v) {return sum(v,0,v.end()-v.begin()-1);} template<class T> inline ll sz(T &&v){ return (ll)v.size(); } inline ll CEIL(ll a,ll b){ return (a<0) ? -(-a/b) : (a+b-1)/b; } //負もOK inline ll FLOOR(ll a,ll b){ return -CEIL(-a,b); } //負もOK //pair用テンプレート template<class T,class S> inline pair<T,S>& operator+=(pair<T,S> &a,const pair<T,S> &b){ a.first+=b.first; a.second+=b.second; return a; } template<class T,class S> inline pair<T,S>& operator-=(pair<T,S> &a,const pair<T,S> &b){ a.first-=b.first; a.second-=b.second; return a; } template<class T,class S> inline pair<T,S>& operator*=(pair<T,S> &a,const pair<T,S> &b){ a.first*=b.first; a.second*=b.second; return a; } template<class T,class S> inline pair<T,S>& operator/=(pair<T,S> &a,const pair<T,S> &b){ a.first/=b.first; a.second/=b.second; return a; } template<class T,class S> inline pair<T,S>& operator%=(pair<T,S> &a,const pair<T,S> &b){ a.first%=b.first; a.second%=b.second; return a; } template<class T,class S,class R> inline pair<T,S>& operator+=(pair<T,S> &a,R b){ a.first+=b; a.second+=b; return a; } template<class T,class S,class R> inline pair<T,S>& operator-=(pair<T,S> &a,R b){ a.first-=b; a.second-=b; return a; } template<class T,class S,class R> inline pair<T,S>& operator*=(pair<T,S> &a,R b){ a.first*=b; a.second*=b; return a; } template<class T,class S,class R> inline pair<T,S>& operator/=(pair<T,S> &a,R b){ a.first/=b; a.second/=b; return a; } template<class T,class S,class R> inline pair<T,S>& operator%=(pair<T,S> &a,R b){ a.first%=b; a.second%=b; return a; } template<class T,class S,class R> inline pair<T,S> operator+(const pair<T,S> &a,R b){ pair<T,S> c=a; return c+=b; } template<class T,class S,class R> inline pair<T,S> operator-(const pair<T,S> &a,R b){ pair<T,S> c=a; return c-=b; } template<class T,class S,class R> inline pair<T,S> operator*(const pair<T,S> &a,R b){ pair<T,S> c=a; return c*=b; } template<class T,class S,class R> inline pair<T,S> operator/(const pair<T,S> &a,R b){ pair<T,S> c=a; return c/=b; } template<class T,class S,class R> inline pair<T,S> operator%(const pair<T,S> &a,R b){ pair<T,S> c=a; return c%=b; } template<class T,class S,class R> inline pair<T,S> operator-(R b,const pair<T,S> &a){ pair<T,S> c=-a; return c+=b; } template<class T,class S> inline pair<T,S> operator-(const pair<T,S> &a,const pair<T,S> &b){ pair<T,S> c=a; return c-=b; } template<class T,class S> inline pair<T,S> operator-(const pair<T,S> &a){ pair<T,S> c=a; return c*=(-1); } template<class T,class S> inline ostream &operator<<(ostream &os,const pair<T,S> &a){ return os << a.first << ' ' << a.second; } //tuple用テンプレート 出力用のみ template<class T,class S,class R> inline ostream &operator<<(ostream &os,const tuple<T,S,R> &a){ return os << get<0>(a) << ' ' << get<1>(a) << ' ' << get<2>(a); } template<class T,class S,class R,class Q> inline ostream &operator<<(ostream &os,const tuple<T,S,R,Q> &a){ return os << get<0>(a) << ' ' << get<1>(a) << ' ' << get<2>(a) << ' ' << get<3>(a); } //vector用テンプレート template<class T> inline ostream &operator<<(ostream &os,const vector<T> &a){ for (ll i=0; i<(ll)a.size(); i++) os<<(i>0?" ":"")<<a[i]; return os; } //array用テンプレート template<class T,size_t S> inline array<T,S>& operator+=(array<T,S> &a,const array<T,S> &b){ for (ll i=0; i<(ll)S; i++) a[i]+=b[i]; return a; } template<class T,size_t S> inline array<T,S>& operator-=(array<T,S> &a,const array<T,S> &b){ for (ll i=0; i<(ll)S; i++) a[i]-=b[i]; return a; } template<class T,size_t S> inline array<T,S>& operator*=(array<T,S> &a,const array<T,S> &b){ for (ll i=0; i<(ll)S; i++) a[i]*=b[i]; return a; } template<class T,size_t S> inline array<T,S>& operator/=(array<T,S> &a,const array<T,S> &b){ for (ll i=0; i<(ll)S; i++) a[i]/=b[i]; return a; } template<class T,size_t S> inline array<T,S>& operator%=(array<T,S> &a,const array<T,S> &b){ for (ll i=0; i<(ll)S; i++) a[i]%=b[i]; return a; } template<class T,size_t S,class R> inline array<T,S>& operator+=(array<T,S> &a,R b){ for (T &e: a) e+=b; return a; } template<class T,size_t S,class R> inline array<T,S>& operator-=(array<T,S> &a,R b){ for (T &e: a) e-=b; return a; } template<class T,size_t S,class R> inline array<T,S>& operator*=(array<T,S> &a,R b){ for (T &e: a) e*=b; return a; } template<class T,size_t S,class R> inline array<T,S>& operator/=(array<T,S> &a,R b){ for (T &e: a) e/=b; return a; } template<class T,size_t S,class R> inline array<T,S>& operator%=(array<T,S> &a,R b){ for (T &e: a) e%=b; return a; } template<class T,size_t S,class R> inline array<T,S> operator+(const array<T,S> &a,R b){ array<T,S> c=a; return c+=b; } template<class T,size_t S,class R> inline array<T,S> operator-(const array<T,S> &a,R b){ array<T,S> c=a; return c-=b; } template<class T,size_t S,class R> inline array<T,S> operator*(const array<T,S> &a,R b){ array<T,S> c=a; return c*=b; } template<class T,size_t S,class R> inline array<T,S> operator/(const array<T,S> &a,R b){ array<T,S> c=a; return c/=b; } template<class T,size_t S,class R> inline array<T,S> operator%(const array<T,S> &a,R b){ array<T,S> c=a; return c%=b; } template<class T,size_t S,class R> inline array<T,S> operator-(R b,const array<T,S> &a){ array<T,S> c=-a; return c+=b; } template<class T,size_t S> inline array<T,S> operator-(const array<T,S> &a,const array<T,S> &b){ array<T,S> c=a; return c-=b; } template<class T,size_t S> inline array<T,S> operator-(const array<T,S> &a){ array<T,S> c=a; return c*=(-1); } template<class T,size_t S> inline ostream &operator<<(ostream &os,const array<T,S> &a){ for (ll i=0; i<(ll)S; i++) os<<(i>0?" ":"")<<a[i]; return os; } #endif//テンプレートend #if defined(_MSC_VER) && __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif struct{ system_clock::time_point st = system_clock::now(); ll operator()()const{return duration_cast<microseconds>(system_clock::now()-st).count()/1000;} } timeget; ////////////////////////////////////////// template<long long MOD> struct mll_{ using Int = long long; using ll = long long; ll val_=0; /*---- utility ----*/ mll_ &norm(){ return normR().normS(); }//正規化 mll_ &normR(){ val_%=MOD; return *this; }//剰余正規化のみ mll_ &normS(){ if (val_<0) val_+=MOD; return *this; }//正負正規化のみ mll_ &normP(){ if (val_>=MOD) val_-=MOD; return *this; }//加算時正規化 mll_ &invsg(){ val_=-val_; return normS(); }//正負反転 ll modinv(int a){//a^-1 mod MOD int ypre=0,y=1,apre=MOD; while (a>1){ int t=apre/a; apre-=a*t,swap(a,apre); ypre-=y*t,swap(y,ypre); } return y<0 ? y+MOD: y; } /*---- I/F ----*/ mll_(){} mll_(ll v): val_(v){ norm(); } mll_(ll v,bool b): val_(v){} //正規化無のコンストラクタ Int val()const{ return (Int)val_; } bool isnone() const { return val_==-1; } //true:値なし mll_ &none() { val_=-1; return *this; } //値なしにする mll_ &inv(){ val_=modinv((int)val_); return *this; } mll_ &operator+=(mll_ b){ val_+=b.val_; return normP(); } mll_ &operator-=(mll_ b){ val_-=b.val_; return normS(); } mll_ &operator*=(mll_ b){ val_*=b.val_; return normR(); } mll_ &operator/=(mll_ b){ return *this*=b.inv(); } mll_ &operator+=(ll b){ return *this+=mll_(b); } mll_ &operator-=(ll b){ return *this-=mll_(b); } mll_ &operator*=(ll b){ return *this*=mll_(b); } mll_ &operator/=(ll b){ return *this/=mll_(b); } mll_ operator-()const{ return mll_(*this).invsg(); } mll_ operator+(mll_ b)const{ return mll_(*this)+=b; } mll_ operator-(mll_ b)const{ return mll_(*this)-=b; } mll_ operator*(mll_ b)const{ return mll_(*this)*=b; } mll_ operator/(mll_ b)const{ return mll_(*this)/=b; } mll_ operator+(ll b)const{ return mll_(*this)+=b; } mll_ operator-(ll b)const{ return mll_(*this)-=b; } mll_ operator*(ll b)const{ return mll_(*this)*=b; } mll_ operator/(ll b)const{ return mll_(*this)/=b; } friend mll_ operator+(ll a,mll_ b){ return b+a; } friend mll_ operator-(ll a,mll_ b){ return -b+a; } friend mll_ operator*(ll a,mll_ b){ return b*a; } friend mll_ operator/(ll a,mll_ b){ return mll_(a)/b; } bool operator==(mll_ b)const{ return val_==b.val_; } bool operator!=(mll_ b)const{ return val_!=b.val_; } bool operator==(ll b)const{ return *this==mll_(b); } bool operator!=(ll b)const{ return *this!=mll_(b); } friend bool operator==(ll a,mll_ b){ return mll_(a)==b; } friend bool operator!=(ll a,mll_ b){ return mll_(a)!=b; } friend ostream &operator<<(ostream &os,mll_ a){ return os << a.val_; } friend istream &operator>>(istream &is,mll_ &a){ return is >> a.val_; } mll_ pow(ll k)const{ mll_ ret(1,false),a(*this); for (; k>0; k>>=1,a*=a) if (k&1)ret*=a; return ret; } static constexpr int mod() { return MOD; } //enum{ modll=MOD }; }; #if 0 #define MODLL (1000000007LL) #else #define MODLL (998244353LL) #endif using mll = mll_<MODLL>; //using mll = fraction; using vmll = std::vector<mll>; using vvmll = std::vector<vmll>; using vvvmll = std::vector<vvmll>; using vvvvmll = std::vector<vvvmll>; template<class T> struct Vector: vector<T>{ using Int = long long; using vT=vector<T>; using cvT=const vector<T>; using cT=const T; using vT::vT; //親クラスのコンストラクタの隠蔽を回避 using vT::begin,vT::end,vT::insert,vT::erase; auto it(Int i){ return begin()+i; } auto it(Int i)const{ return begin()+i; } Vector(cvT& b):vT(b){} Vector(vT&& b):vT(move(b)){} Vector(Int n,T s,T d){ iota(n,s,d); } template<class S> Vector &operator+=(S x){ for (T &e: *this) e+=x; return *this; } template<class S> Vector &operator-=(S x){ for (T &e: *this) e-=x; return *this; } template<class S> Vector &operator*=(S x){ for (T &e: *this) e*=x; return *this; } template<class S> Vector &operator/=(S x){ for (T &e: *this) e/=x; return *this; } template<class S> Vector &operator%=(S x){ for (T &e: *this) e%=x; return *this; } template<class S> Vector operator+(S x)const{ return Vector(*this)+=x; } template<class S> Vector operator-(S x)const{ return Vector(*this)-=x; } template<class S> Vector operator*(S x)const{ return Vector(*this)*=x; } template<class S> Vector operator/(S x)const{ return Vector(*this)/=x; } template<class S> Vector operator%(S x)const{ return Vector(*this)%=x; } Vector operator-()const{ return Vector(*this)*=-1; } template<class S> friend Vector operator-(S x,const Vector &a){ return -a+=x; } Int size()const{ return (Int)vT::size(); } Vector &push_back(cT& x){ vT::push_back(x); return *this; } Vector &pop_back(){ vT::pop_back(); return *this; } Vector &push_front(cT& x){ insert(begin(),x); return *this; } Vector &pop_front(){ erase(0); return *this; } Vector &insert(Int i,cT& x){ insert(it(i),x); return *this; } Vector &insert(Int i,cvT& b){ insert(it(i),b.begin(),b.end()); return *this; } Vector &erase(Int i){ erase(it(i)); return *this; } Vector &erase(Int l,Int r){ erase(it(l),it(r+1)); return *this; } Vector &concat(cvT &b){ insert(end(),b.begin(),b.end()); return *this; } Vector &concat(cvT &b,Int n){ for (int i=0;i<n;++i) concat(b); return *this; } Vector &repeat(Int n){ concat(vT(*this),n-1); return *this; } Vector &reverse(){ std::reverse(begin(),end()); return *this; } Vector &sort(){ std::sort(begin(),end()); return *this; } Vector &rsort(){ std::sort(vT::rbegin(),vT::rend()); return *this; } template<class Pr> Vector &sort(Pr pr){ std::sort(begin(),end(),pr); return *this; } Vector &uniq(){ erase(unique(begin(),end()),end()); return *this; } Vector &sortq(){ return sort().uniq(); } Vector &fill(Int l,Int r,cT& x){ std::fill(it(l),it(r+1),x); return *this; } template<class S=Int> Vector &iota(Int n,T s=0,S d=1){ vT::resize(n); if (n==0) return *this; (*this)[0]=s; for (int i=1;i<n;++i) (*this)[i]=(*this)[i-1]+d; return *this; } Int count(cT& x)const{ return Int(std::count(begin(),end(),x)); } Int count(Int l,Int r,cT& x)const{ return Int(std::count(it(l),it(r+1),x)); } template<class Pr> Int countif(Pr pr)const{ return Int(count_if(begin(),end(),pr)); } template<class Pr> Int countif(Int l,Int r,Pr pr)const{ return Int(count_if(it(l),it(r+1),pr)); } Int find(cT& x)const{ return Int(std::find(begin(),end(),x)-begin()); } Int find(Int l,Int r,cT& x)const{ return Int(std::find(it(l),it(r+1),x)-begin()); } template<class Pr> Int findif(Pr pr)const{ return Int(find_if(begin(),end(),pr)-begin()); } template<class Pr> Int findif(Int l,Int r,Pr pr)const{ return Int(find_if(it(l),it(r+1),pr)-begin()); } Vector<Int> findall(cT& x)const{ return findall(0,size()-1,x); } Vector<Int> findall(Int l,Int r,cT& x)const{ return findallif(l,r,[&](cT& y){return y==x;}); } template<class Pr> Vector<Int> findallif(Pr pr)const{ return findallif(0,size()-1,pr); } template<class Pr> Vector<Int> findallif(Int l,Int r,Pr pr)const{ Vector<Int> ret; for (Int i=l;i<=r;++i) if (pr((*this)[i])) ret.push_back(i); return ret; } Int flooridx(cT& x)const{ return Int(upper_bound(begin(),end(),x)-begin()-1); } Int ceilidx(cT& x)const{ return Int(lower_bound(begin(),end(),x)-begin()); } Int leftnmof(cT& x)const{ return flooridx(x)+1; } Int rightnmof(cT& x)const{ return size()-ceilidx(x); } bool contains(cT& x)const{ Int i=flooridx(x); return i>=0 && (*this)[i]==x; } template<class Pr> Int flooridx(cT& x,Pr pr)const{ return Int(upper_bound(begin(),end(),x,pr)-begin()-1); } template<class Pr> Int ceilidx(cT& x,Pr pr)const{ return Int(lower_bound(begin(),end(),x,pr)-begin()); } template<class Pr> Int leftnmof(cT& x,Pr pr)const{ return flooridx(x,pr)+1; } template<class Pr> Int rightnmof(cT& x,Pr pr)const{ return size()-ceilidx(x,pr); } template<class Pr> bool contains(cT& x,Pr pr)const{ Int i=flooridx(x,pr); return i>=0 && (*this)[i]==x; } }; /* vll a={9,8,7},b={1,2,3}; vpll p={{5,3},{7,8},{0,2},}; - -------- 操作系 -------- a+=x a-=x a*=x a/=x a%=x a+x a-x a*x a/x a%x -a x-a //∀i a[i]にxを演算 a.push_front(x); a.push_back(x); a.pop_front(); a.pop_back(); a.insert(i,x); //a[i]にx挿入 a.insert(i,b); //a[i]にvll b挿入 a.erase(i); //a[i]削除 a.erase(l,r); //区間[l,r]削除 a.concat(b); //aにbを結合 a.concat(b,n); //aにbをn回結合 a.repeat(n); //aをn回繰り返す a.reverse(); //反転 a.sort(); //ソート a.rsort(); //逆順ソート p.sort([&](pll x,pll y){return x.second<y.second;});//比較関数指定ソート a.uniq(); //連続同値を1つにする a.sortq(); //ソートしてユニーク a.fill(l,r,x); //[l,r]にx代入 a.iota(n,s,d); //aを等差数列にする 長さn,初項s,公差d vll a(n,s,d); //コンストラクタ版iota - -------- 検索系 -------- auto pr=[&](auto &x){ return x>0; }; //検索条件 ll m=a.count(x); //xの個数 ll m=a.count(l,r,x); //xの個数in[l,r] ll m=a.countif(pr); //条件満たす個数 ll m=a.countif(l,r,pr); //条件満たす個数in[l,r] ll i=a.find(x); //xの最左位置i ない時N(配列長) ll i=a.find(l,r,x); //xの最左位置i in[l,r] ない時r+1 ll i=a.findif(pr); //条件満たす最左位置i ない時N(配列長) ll i=a.findif(l,r,pr); //条件満たす最左位置i in[l,r] ない時r+1 vll is=a.findall(x); //xの位置i列挙 vll is=a.findall(l,r,x); //xの位置i列挙in[l,r] vll is=a.findallif(pr); //条件満たす位置i列挙 vll is=a.findallif(l,r,pr); //条件満たす位置i列挙in[l,r] - -------- 昇順sort済み配列用 -------- ll i=a.flooridx(x); //x以下の最近傍位置i ない時-1 ll i=a.ceilidx(x); //x以上の最近傍位置i ない時N(配列長) ll m=a.leftnmof(x); //x以下の個数 ll m=a.rightnmof(x); //x以上の個数 bool b=a.contains(x); //xを含む - -------- 比較関数prでsort済みの配列用 -------- auto pr=[&](auto &x,auto &y){ return x>y; }; //降順ソート時 ll i=a.flooridx(x,pr); //x以左の最近傍位置i ない時-1 ll i=a.ceilidx(x,pr); //x以右の最近傍位置i ない時N(配列長) ll m=a.leftnmof(x,pr); //x以左の個数 ll m=a.rightnmof(x,pr); //x以右の個数 bool b=a.contains(x,pr); //xを含む a.concat(b,n).pop_back().rsort().uniq(); //連続適用できる */ namespace SolvingSpace{ template<class T> using vector = Vector<T>; using vll=vector< ll>; using vmll=vector< mll>; using vdd=vector< dd>; using vvll=vector< vll>; using vvmll=vector< vmll>; using vvdd=vector< vdd>; using vvvll=vector< vvll>; using vvvmll=vector< vvmll>; using vvvdd=vector<vvdd>; using vvvvll=vector<vvvll>; using vvvvmll=vector<vvvmll>; using vpll=vector< pll>; using vtll=vector< tll>; using vqll=vector< qll>; using vvpll=vector< vpll>; using vvtll=vector< vtll>; using vvqll=vector<vqll>; template<class T> struct dptable1d{ using Int = long long; ll sx,ex; T dmy,dmyval; //table外値 vector<T> tbl; /*---- I/F ----*/ dptable1d(Int sx_,Int ex_,T inival,T dmyval_){ Init(sx_,ex_,inival,dmyval_); } T &operator()(Int x) { return Tbl((ll)x); } /*---- utility ----*/ void Init(Int sx_,Int ex_,T inival,T dmyval_){ sx=sx_,ex=ex_,dmy=dmyval=dmyval_,tbl.assign(ex-sx+1,inival); } bool Out(ll x)const{ return x<sx || ex<x; } T &Tbl(ll x){ return Out(x) ? (dmy=dmyval) : tbl[x-sx]; } /*---- 累積和関係 ----*/ #if 1 T none; //無効値(未計算の印) vector<T> cm; //累積和配列 dptable1d(Int sx_,Int ex_,T inival,T dmyval_,T none_){ Init(sx_,ex_,inival,dmyval_); cm.assign(ex-sx+2,none_); cm[0]=T(0); } T sum(Int lx,Int rx){ rx++; lx=clamp(lx,sx,ex+1); rx=clamp(rx,sx,ex+1); return Cm(rx)-Cm(lx); } T CmRaw(ll i){ if (cm[i]==none) cm[i]=tbl[i-1]+CmRaw(i-1); return cm[i]; } T Cm(ll x){ return CmRaw(x-sx); } #endif /*---- 復元関係 ----*/ #if 1 vector<ll> pre; //遷移元インデックス なしはsx-1 void InitPreIfNot(){ if (pre.empty()) pre.assign(ex-sx+1,sx-1); } void setpre(Int x,Int prex){ InitPreIfNot(); if (!Out(x)) pre[x-sx]=(ll)prex; } vector<Int> restore(Int x){ InitPreIfNot(); vector<Int> ret{x,}; while (pre[x-sx]!=sx-1) ret.push_back(x=pre[x-sx]); reverse(ret.begin(),ret.end()); return ret; } #else void InitRestore(){} #endif }; /* - -------- DPテーブル定義 -------- sx~ex . 型↓ table初期値↓ ↓table外値 dptable1d<mll> dp(sx,ex, 0, 0); dptable1d<ll> dp(sx,ex, 0, 0); - -------- DPテーブル定義累積和有 -------- sx~ex . 型↓ table初期値↓ ↓table外値 ↓累積和用無効値(未計算の印) dptable1d<mll> dp(sx,ex, 0, 0, mll().none()); dptable1d<ll> dp(sx,ex, 0, 0, -INF*7); - -------- アクセス -------- dp(i) //dptable1d[i-sx] mll sm=dp.sum(lx,rx); //区間[lx,rx]の和 - -------- 復元 -------- dp添字の列を得る vll path=dp.restore(ex); */ auto solve( ll n,vll &X,vll &A ){ vll cmxor(n+1); rep(i,1,n) cmxor[i]=cmxor[i-1]^A[i-1]; auto CmXor=[&](ll l,ll r){ return cmxor[r+1]^cmxor[l]; }; dptable1d<ll> dp(-1,n-1, INF, 0); dp(-1)=0; rep(i,0,n-1){ rep(j,-1,i-1){ chmin(dp(i),dp(j)+CmXor(j+1,i)+X[i]-X[j+1]); } } return dp(n-1); } //復元付き auto solveRe( ll n,vll &X,vll &A ){ vll cmxor(n+1); rep(i,1,n) cmxor[i]=cmxor[i-1]^A[i-1]; auto CmXor=[&](ll l,ll r){ return cmxor[r+1]^cmxor[l]; }; dptable1d<ll> dp(-1,n-1, INF, 0); dp(-1)=0; rep(i,0,n-1){ rep(j,-1,i-1){ if (chmin(dp(i),dp(j)+CmXor(j+1,i)+X[i]-X[j+1])){ dp.setpre(i,j); } } } vll path=dp.restore(n-1); rep(i,1,sz(path)-1){ ll pr=path[i-1]+1; ll cu=path[i]; if (pr==cu)continue; cout << X[pr] << "-" << X[cu] << '\n'; } return dp(n-1); } struct bll{ //第0~62bitまで対応 ll s; bll(ll s_=0): s(s_){} struct ref { bll &b; const ll msk; ref(bll &b_,ll pos):b(b_),msk(1LL<<pos){} operator ll() const { return (b.s&msk)!=0; } ref &operator=(bool x){ if (x) b.s|=msk; else b.s&=~msk; return *this; } }; ref operator[](ll pos){ return ref(*this,pos); } ll operator[](ll pos) const { return (s>>pos)&1; } bll &operator=(ll b){ s=b; return *this; } bll operator++(int){ bll b(*this); s++; return b; } bll operator--(int){ bll b(*this); s--; return b; } operator ll() const noexcept { return s; } bll &on(ll l,ll r){ s|= rangemask(l,r); return *this; } bll &off(ll l,ll r){ s&=~rangemask(l,r); return *this; } bll &flip(ll l,ll r){ s^= rangemask(l,r); return *this; } bll &on(ll i){ s|= (1LL<<i); return *this; } bll &off(ll i){ s&=~(1LL<<i); return *this; } bll &flip(ll i){ s^= (1LL<<i); return *this; } static ll rangemask(ll l,ll r){ return (1LL<<(r+1))-(1LL<<l); } ll msbit()const{ for (ll o=63,x=-1;;){ ll m=(o+x)/2; if (s < (1LL<<m)) o=m; else x=m; if (o-x==1) return x; } } ll lsbit()const{ return bll(lsb()).msbit(); } ll msb()const{ ll pos=msbit(); return (pos<0) ? 0LL : 1LL<<pos; } ll lsb()const{ return s&-s; } ll count()const{ return bitset<64>(s).count(); } vll idxes()const{ vll v; for (ll i=0,t=s; t; t>>=1,i++) if (t&1)v.push_back(i); return v; } }; /* bll b(s); b[3]=1; //第3bitを1に b.on(4,7).off(9,59).flip(0,3); //第4~7bitを1に、等 b.s+=10; //普通に数値として扱いたい時 //0000001000101100 b ll c=b.msb(); //0000001000000000 b.msb() ll c=b.msbit(); // ^第9bit b.msbit() ll c=b.lsb(); //0000000000000100 b.lsb() ll c=b.lsbit(); // 第2bit^ b.lsbit() ll c=b.count(); //1の数 (4個) vll idxes=b.idxes(); //1のidxのvll {2,3,5,9} */ auto solve2(//追い越しあり ll n,vll &X,vll &A ){ vll f(1ll<<n); for (bll s=1; s[n]==0; s++){ ll cost=0; vll idxes=s.idxes(); for (auto&& i: idxes) cost^=A[i]; cost+=X[idxes.back()]-X[idxes.front()]; f[s]=cost; } dptable1d<ll> dp(1,(1ll<<n)-1,INF,0,-INF*7); for (bll s=1; s[n]==0; s++){ dp(s)=f[s]; for (ll ss=(s-1)&s; ss>0; ss=(ss-1)&s){ chmin(dp(s),dp(ss)+f[s-ss]); } } return dp((1ll<<n)-1); } template<class Key,class T> struct MAP: map<Key,T>{ using P=map<Key,T>; T inival=T(); template<class...Args> MAP(Args...args): P(args...){} template<class S> MAP(S ini):inival(ini){} T &operator[](const Key& x){ auto it=P::find(x); if (it==P::end()) return P::operator[](x)=inival; return it->second; } void dump(){ for (auto&&[key,val]:*this){ cerr << key << " : " << val << '\n'; } } }; /* . ↓デフォルト値 MAP<pll,mll> mp(mll().none()); */ auto solve3(//愚直 ll n,vll &X,vll &A ){ ll Xmn=X[0],Xmx=X.back(); vpll XAini; rep(i,0,sz(X)-1){ XAini.emplace_back(X[i],A[i]); } XAini.sort(); MAP<vpll,ll> mp(INF); deque<vpll> dq; mp[XAini]=sum(A); dq.push_back(XAini); auto tran=[&](vpll &xa){ ll m=sz(xa); vector<pair<vpll,ll>> ret; rep(i,0,m-1)rep(j,i+1,m-1)rep(x,Xmn,Xmx){ auto [xi,ai]=xa[i]; auto [xj,aj]=xa[j]; ll cost=abs(xi-x)+abs(xj-x); ll ak=ai^aj; ll adist=ak-(ai+aj); vpll res=xa; res.erase(j).erase(i); res.emplace_back(x,ak); res.sort(); ret.emplace_back(move(res),cost+adist); } return ret; }; while (dq.size()){ vpll xa=move(dq.front()); dq.pop_front(); ll distorg=mp[xa]; vector<pair<vpll,ll>> cands=tran(xa); for (auto&&[xxa,cost]:cands){ if (chmin(mp[xxa],distorg+cost)) dq.push_back(xxa); } } ll ans=INF; for (auto&&[key,ct]:mp) chmin(ans,ct); return ans; } void solvecomp( ll n,vll &X,vll &A ){ auto coutans=[](auto ans){ /* 出力を書く */ cout << ans << '\n'; }; auto ans=solve( n,X,A ); coutans(ans); #if 0 cout << "- - - - -\n"; auto an2=solve2( n,X,A ); coutans(an2); cout << "================\n"; if (ans!=an2){ cout << "============ input =============\n"; /* inputファイルの形式で吐き出す */ cout << "============ input end =========\n\n================\n"; getchar(); rep(i,0,10000000000) i++;//getchar()の代わり } #endif } void cin2solve(){ /* cinからの入力を書く */ ll n; cin >> n; vector<ll> X; rep(i,0,n-1){ ll X__; cin>>X__; X.push_back(X__); } vector<ll> A; rep(i,0,n-1){ ll A__; cin>>A__; A.push_back(A__); } solvecomp( n,X,A ); } };//SolvingSpace ////////////////////////////////////////// int main(){ #if 1 //SolvingSpace::labo(); SolvingSpace::cin2solve(); //SolvingSpace::generand(); //SolvingSpace::generate1(); #else ll t; cin >> t; rep(i,0,t-1){ SolvingSpace::cin2solve(); //SolvingSpace::generand(); } #endif cerr << timeget() <<"ms"<< '\n'; return 0; }