結果

問題 No.833 かっこいい電車
ユーザー 👑 tatyamtatyam
提出日時 2019-04-20 00:08:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 11,824 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 210,980 KB
実行使用メモリ 14,796 KB
最終ジャッジ日時 2023-09-14 16:05:59
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
8,808 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 59 ms
9,100 KB
testcase_11 AC 82 ms
14,584 KB
testcase_12 AC 26 ms
8,664 KB
testcase_13 AC 16 ms
4,572 KB
testcase_14 AC 72 ms
14,608 KB
testcase_15 AC 34 ms
8,780 KB
testcase_16 AC 29 ms
9,368 KB
testcase_17 AC 19 ms
4,376 KB
testcase_18 AC 67 ms
9,108 KB
testcase_19 AC 29 ms
9,116 KB
testcase_20 AC 9 ms
5,856 KB
testcase_21 AC 52 ms
6,104 KB
testcase_22 AC 51 ms
14,796 KB
testcase_23 AC 32 ms
9,148 KB
testcase_24 AC 51 ms
14,772 KB
testcase_25 AC 64 ms
8,724 KB
testcase_26 AC 37 ms
14,216 KB
testcase_27 AC 48 ms
9,156 KB
testcase_28 AC 32 ms
6,072 KB
testcase_29 AC 42 ms
8,744 KB
testcase_30 AC 90 ms
14,744 KB
testcase_31 AC 99 ms
8,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
using ull=unsigned long long;
using uint=unsigned int;
using pcc=pair<char,char>;
using pii=pair<int,int>;
using pll=pair<ll,ll>;
using pdd=pair<double,double>;
using tuplis=pair<ll,pll>;
using tuplis2=pair<pll,ll>;
template<class T> using pq=priority_queue<T,vector<T>,greater<T>>;
const ll LINF=0x1fffffffffffffff;
const ll MOD=1000000007;
const ll MODD=998244353;
const int INF=0x3fffffff;
const ld DINF=numeric_limits<ld>::infinity();
const ld EPS=1e-8;
const vector<pii> four={{-1,0},{0,1},{1,0},{0,-1}};
#define _overload4(_1,_2,_3,_4,name,...) name
#define _overload3(_1,_2,_3,name,...) name
#define _rep1(n) for(ll i=0;i<n;++i)
#define _rep2(i,n) for(ll i=0;i<n;++i)
#define _rep3(i,a,b) for(ll i=a;i<b;++i)
#define _rep4(i,a,b,c) for(ll i=a;i<b;i+=c)
#define rep(...) _overload4(__VA_ARGS__,_rep4,_rep3,_rep2,_rep1)(__VA_ARGS__)
#define _rrep1(n) for(ll i=n-1;i>=0;i--)
#define _rrep2(i,n) for(ll i=n-1;i>=0;i--)
#define _rrep3(i,a,b) for(ll i=b-1;i>=a;i--)
#define _rrep4(i,a,b,c) for(ll i=a+(b-a-1)/c*c;i>=a;i-=c)
#define rrep(...) _overload4(__VA_ARGS__,_rrep4,_rrep3,_rrep2,_rrep1)(__VA_ARGS__)
#define each(i,a) for(auto &i:a)
#define sum(...) accumulate(range(__VA_ARGS__),0LL)
#define dsum(...) accumulate(range(__VA_ARGS__),double(0))
#define _range(i) (i).begin(),(i).end()
#define _range2(i,k) (i).begin(),(i).begin()+k
#define _range3(i,a,b) (i).begin()+a,(i).begin()+b
#define range(...) _overload3(__VA_ARGS__,_range3,_range2,_range)(__VA_ARGS__)
#define _rrange(i) (i).rbegin(),(i).rend()
#define _rrange2(i,k) (i).rbegin(),(i).rbegin()+k
#define _rrange3(i,a,b) (i).rbegin()+a,(i).rbegin()+b
#define rrange(...) _overload3(__VA_ARGS__,_rrange3,_rrange2,_rrange)(__VA_ARGS__)
#define elif else if
#define unless(a) if(!(a))
#define mp make_pair
#define mt make_tuple
#define INT(...) int __VA_ARGS__;in(__VA_ARGS__)
#define LL(...) ll __VA_ARGS__;in(__VA_ARGS__)
#define STR(...) string __VA_ARGS__;in(__VA_ARGS__)
#define CHR(...) char __VA_ARGS__;in(__VA_ARGS__)
#define DBL(...) double __VA_ARGS__;in(__VA_ARGS__)
#define vec(type,name,...) vector<type> name(__VA_ARGS__)
#define VEC(type,name,size) vector<type> name(size);in(name)
#define vv(type,name,h,...) vector<vector<type>>name(h,vector<type>(__VA_ARGS__))
#define VV(type,name,h,...) vector<vector<type>>name(h,vector<type>(__VA_ARGS__));in(name)
#define vvv(type,name,h,w,...) vector<vector<vector<type>>>name(h,vector<vector<type>>(w,vector<type>(__VA_ARGS__)))
struct SETTINGS{SETTINGS(){cout<<fixed<<setprecision(20);};};SETTINGS _SETTINGS();
inline constexpr ll gcd(ll a,ll b){if(!a||!b)return 0;while(b){ll c=b;b=a%b;a=c;}return a;}
inline constexpr ll lcm(ll a,ll b){if(!a||!b)return 0;return a*b/gcd(a,b);}
template<class T> inline constexpr T min(vector<T> &v){return *min_element(range(v));}
inline char min(string &v){return *min_element(range(v));}
template<class T> inline constexpr T max(vector<T> &v){return *max_element(range(v));}
inline char max(string &v){return *max_element(range(v));}
inline constexpr ll intpow(const ll&a,const ll&b){if(b==0)return 1;ll ans=intpow(a,b/2);return ans*ans*(b&1?a:1);}
inline constexpr ll modpow(const ll&a,const ll&b,const ll&mod=MOD){if(b==0)return 1;ll ans=modpow(a,b/2,mod);ans=ans*ans%mod;if(b&1)ans=ans*a%mod;return ans;}
template<typename T>
inline constexpr bool update_min(T &mn,const T &cnt){if(mn>cnt){mn=cnt;return 1;}else return 0;}
template<typename T>
inline constexpr bool update_max(T &mx,const T &cnt){if(mx<cnt){mx=cnt;return 1;}else return 0;}
inline int scan(){ return getchar(); }
inline void scan(int &a){ scanf("%d", &a); }
inline void scan(unsigned &a){ scanf("%u", &a); }
inline void scan(long &a){ scanf("%ld", &a); }
inline void scan(long long &a){ scanf("%lld", &a); }
inline void scan(unsigned long long &a){ scanf("%llu", &a); }
inline void scan(char &a){ scanf("%c", &a); }
inline void scan(float &a){ scanf("%f", &a); }
inline void scan(double &a){ scanf("%lf", &a); }
inline void scan(long double &a){ scanf("%Lf", &a); }
inline void scan(vector<bool> &vec){ for(unsigned i = 0; i < vec.size(); i++) { int a; scan(a); vec[i] = a; } }
template<class T> inline void scan(vector<T> &vec);
template<class T, size_t size> inline void scan(array<T, size> &vec);
template<class T, class L> inline void scan(pair<T, L> &p);
template<class T, size_t size> inline void scan(T (&vec)[size]);
template<class T> inline void scan(vector<T> &vec){ for(auto &i : vec) scan(i); }
template<class T, size_t size> inline void scan(array<T, size> &vec){ for(auto &i : vec) scan(i); }
template<class T, class L> inline void scan(pair<T, L> &p){ scan(p.first); scan(p.second); }
template<class T, size_t size> inline void scan(T (&vec)[size]){ for(auto &i : vec) scan(i); }
template<class T> inline void scan(T &a){ cin>>a; }
inline void in(){}
template <class Head, class... Tail> inline void in(Head &head, Tail&... tail){ scan(head); in(tail...); }
inline void print(){ putchar('\n'); }
inline void print(const bool &a){ printf("%d", a); }
inline void print(const int &a){ printf("%d", a); }
inline void print(const unsigned &a){ printf("%u", a); }
inline void print(const long &a){ printf("%ld", a); }
inline void print(const long long &a){ printf("%lld", a); }
inline void print(const unsigned long long &a){ printf("%llu", a); }
inline void print(const char &a){ printf("%c", a); }
inline void print(const char a[]){ printf("%s", a); }
inline void print(const float &a){ printf("%.10f", a); }
inline void print(const double &a){ printf("%.10lf", a); }
inline void print(const long double &a){ printf("%.10Lf", a); }
template<class T> void print(const vector<T> &vec);
template<class T, size_t size> void print(const array<T, size> &vec);
template<class T, class L> void print(const pair<T, L> &p);
template<class T, size_t size> inline void print(const T (&vec)[size]);
template<class T> void print(const vector<T> &vec){ print(vec[0]); for(auto i = vec.begin(); ++i != vec.end(); ){ putchar(' '); print(*i); } }
template<class T, size_t size> void print(const array<T, size> &vec){ print(vec[0]); for(auto i = vec.begin(); ++i != vec.end(); ){ putchar(' '); print(*i); } }
template<class T, class L> void print(const pair<T, L> &p){ print(p.first); putchar(' '); print(p.second); }
template<class T, size_t size> inline void print(const T (&vec)[size]){ print(vec[0]); for(auto i = vec; ++i != end(vec); ){ putchar(' '); print(*i); } }
template<class T> inline void print(const T &a){ cout << a; }
inline bool out(){ putchar('\n'); return 0; }
template<class T> inline bool out(const T &t){ print(t); putchar('\n'); return 0; }
template<class Head, class... Tail> inline bool out(const Head &head, const Tail&... tail){ print(head); putchar(' '); out(tail...); return 0; }

template <class T>
inline void err(T t){cerr<<t<<'\n';}
inline void err(){cerr<<'\n';}
inline bool yes(bool i){return out(i?"yes":"no");}
inline bool Yes(bool i){return out(i?"Yes":"No");}
inline bool YES(bool i){return out(i?"YES":"NO");}
inline bool Yay(bool i){return out(i?"Yay!":":(");}
inline bool Possible(bool i){return out(i?"Possible":"Impossible");}
inline bool POSSIBLE(bool i){return out(i?"POSSIBLE":"IMPOSSIBLE");}
inline void Case(ll i){cout<<"Case #"<<i<<": ";}


struct LazySegmentTreeMax{
public:
    ll size;
    vector<ll>data,lazy;
    LazySegmentTreeMax(ll n){
        size=1;
        while(size<n)size*=2;
        data.resize(size*2);
        lazy.resize(size*2);
    }
    void update(ll at){
        ll i=0;
        while(at>>i)i++;
        rrep(j,1,i){
            ll a=at>>j;
            if(lazy[a]){
                data[a*2]=lazy[a];
                data[a*2+1]=lazy[a];
                lazy[a*2]=lazy[a];
                lazy[a*2+1]=lazy[a];
                lazy[a]=0;
            }
        }
    }
    void set(ll l,ll r,ll val){
        l+=size;
        r+=size;
        while(l<r){
            if(l&1){
                update(l);
                lazy[l]=val;
                data[l]=val;
                ll a=l++;
                while(a/=2)data[a]=max(data[a*2],data[a*2+1]);
            }
            if(r&1){
                update(--r);
                lazy[r]=val;
                data[r]=val;
                ll a=r;
                while(a/=2)data[a]=max(data[a*2],data[a*2+1]);
            }
            l/=2;
            r/=2;
        }
    }
    ll get(ll l,ll r){
        ll ans=0;
        l+=size;
        r+=size;
        while(l<r){
            if(l&1){
                update(l);
                update_max(ans,data[l++]);
            }
            if(r&1){
                update(--r);
                update_max(ans,data[r]);
            }
            l/=2;
            r/=2;
        }
        return ans;
    }
};
struct LazySegmentTreeMin{
public:
    ll size;
    vector<ll>data,lazy;
    LazySegmentTreeMin(ll n){
        size=1;
        while(size<n)size*=2;
        data.assign(size*2,LINF);
        lazy.resize(size*2,LINF);
    }
    void update(ll at){
        ll i=0;
        while(at>>i)i++;
        rrep(j,1,i){
            ll a=at>>j;
            if(lazy[a]!=LINF){
                data[a*2]=lazy[a];
                data[a*2+1]=lazy[a];
                lazy[a*2]=lazy[a];
                lazy[a*2+1]=lazy[a];
                lazy[a]=LINF;
            }
        }
    }
    void set(ll l,ll r,ll val){
        l+=size;
        r+=size;
        while(l<r){
            if(l&1){
                update(l);
                lazy[l]=val;
                data[l]=val;
                ll a=l++;
                while(a/=2)data[a]=min(data[a*2],data[a*2+1]);
            }
            if(r&1){
                update(--r);
                lazy[r]=val;
                data[r]=val;
                ll a=r;
                while(a/=2)data[a]=min(data[a*2],data[a*2+1]);
            }
            l/=2;
            r/=2;
        }
    }
    ll get(ll l,ll r){
        ll ans=LINF;
        l+=size;
        r+=size;
        while(l<r){
            if(l&1){
                update(l);
                update_min(ans,data[l++]);
            }
            if(r&1){
                update(--r);
                update_min(ans,data[r]);
            }
            l/=2;
            r/=2;
        }
        return ans;
    }
};
struct SegmentTree{ // range-sum
    ll size;
    vector<ll> data;
    SegmentTree(ll n){
        size = 1;
        while(size < n) size *= 2;
        data.resize(size * 2);
    }
    SegmentTree(vector<ll> v){
        size = 1;
        while(size < v.size()) size *= 2;
        data.resize(size * 2);
        for(ll i = 0; i < v.size(); i++) data[size + i] = v[i];
        for(ll i = size - 1; i > 0; i--) data[i] = data[i * 2] + data[i * 2 + 1];
    }
    void add(ll at, ll val){
        at += size;
        data[at] += val;
        while(at /= 2) data[at] += val;
    }
    ll get(ll l, ll r){
        ll ans = 0;
        l += size;
        r += size;
        while(l < r){
            if(l & 1) ans += data[l++];
            if(r & 1) ans += data[--r];
            l /= 2;
            r /= 2;
        }
        return ans;
    }
};
signed main(){
    LL(n,q);
    VEC(ll,a,n);
    a.insert(a.begin(),0);
    SegmentTree seg(a);
    LazySegmentTreeMax max(n+1);
    LazySegmentTreeMin min(n+1);
    rep(n+1){
        max.set(i,i+1,i+1);
        min.set(i,i+1,i);
    }
    rep(q){
        LL(a,x);
        if(a==1){
            ll l=min.get(x,x+1),r=max.get(x+1,x+2);
            max.set(l,x+1,r);
            min.set(x+1,r,l);
        }
        elif(a==2){
            ll l=min.get(x,x+1),r=max.get(x+1,x+2);
            max.set(l,x+1,x+1);
            min.set(x+1,r,x+1);
        }
        elif(a==3){
            seg.add(x,1);
        }
        else{
            out(seg.get(min.get(x,x+1),max.get(x,x+1)));
        }
    }
}
0