結果
問題 | No.2220 Range Insert & Point Mex |
ユーザー | unti |
提出日時 | 2023-02-18 00:04:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 293 ms / 2,000 ms |
コード長 | 5,191 bytes |
コンパイル時間 | 3,469 ms |
コンパイル使用メモリ | 240,776 KB |
実行使用メモリ | 32,252 KB |
最終ジャッジ日時 | 2024-07-21 12:56:15 |
合計ジャッジ時間 | 12,279 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
18,816 KB |
testcase_01 | AC | 21 ms
18,788 KB |
testcase_02 | AC | 22 ms
18,816 KB |
testcase_03 | AC | 21 ms
18,816 KB |
testcase_04 | AC | 21 ms
18,860 KB |
testcase_05 | AC | 22 ms
18,816 KB |
testcase_06 | AC | 22 ms
18,688 KB |
testcase_07 | AC | 22 ms
18,828 KB |
testcase_08 | AC | 21 ms
18,944 KB |
testcase_09 | AC | 22 ms
18,816 KB |
testcase_10 | AC | 21 ms
18,940 KB |
testcase_11 | AC | 22 ms
18,944 KB |
testcase_12 | AC | 22 ms
18,936 KB |
testcase_13 | AC | 264 ms
32,124 KB |
testcase_14 | AC | 265 ms
32,124 KB |
testcase_15 | AC | 266 ms
32,124 KB |
testcase_16 | AC | 271 ms
31,996 KB |
testcase_17 | AC | 269 ms
32,252 KB |
testcase_18 | AC | 263 ms
32,120 KB |
testcase_19 | AC | 265 ms
32,120 KB |
testcase_20 | AC | 229 ms
27,512 KB |
testcase_21 | AC | 237 ms
27,384 KB |
testcase_22 | AC | 229 ms
27,408 KB |
testcase_23 | AC | 293 ms
32,248 KB |
testcase_24 | AC | 199 ms
30,584 KB |
testcase_25 | AC | 233 ms
27,048 KB |
testcase_26 | AC | 270 ms
32,120 KB |
testcase_27 | AC | 129 ms
29,052 KB |
testcase_28 | AC | 161 ms
22,136 KB |
testcase_29 | AC | 162 ms
22,136 KB |
testcase_30 | AC | 163 ms
22,136 KB |
testcase_31 | AC | 248 ms
32,120 KB |
testcase_32 | AC | 209 ms
28,624 KB |
testcase_33 | AC | 218 ms
28,660 KB |
testcase_34 | AC | 243 ms
30,584 KB |
testcase_35 | AC | 257 ms
30,580 KB |
testcase_36 | AC | 244 ms
30,584 KB |
testcase_37 | AC | 257 ms
30,580 KB |
testcase_38 | AC | 274 ms
32,116 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using ll = long long int ; using ld = long double ; using P = pair<ll,ll>; using Graph= vector<vector<ll>>; struct edge{ll to ; ll cost ;} ; using graph =vector<vector<edge>> ; #define rep(i,n) for (ll i=0; i < (n); ++i) #define rep2(i,n,m) for(ll i=n;i<=m;i++) #define rep3(i,n,m) for(ll i=n;i>=m;i--) #define pb push_back #define eb emplace_back #define ppb pop_back #define mpa make_pair #define fi first #define se second #define set20 cout<<fixed<<setprecision(20) ; const ll INF=1e18 ; inline void chmax(ll& a,ll b){a=max(a,b);} inline void chmin(ll& a,ll b){a=min(a,b);} long double pi=acos(-1) ; ll gcd(ll a, ll b) { return b?gcd(b,a%b):a;} ll lcm(ll a, ll b) { return a/gcd(a,b)*b;} ll dx[4] {1,0,-1,0} ; ll dy[4] {0,1,0,-1} ; #define debug cout<<888<<endl ; // ミント //int mod ; //任意modではconst外す const int mod =//1e9+7 ;//924844033; 998244353; struct mint { ll x; // typedef long long ll; mint(ll x=0):x((x%mod+mod)%mod){} mint operator-() const { return mint(-x);} mint& operator+=(const mint a) { if ((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if ((x += mod-a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this;} mint operator+(const mint a) const { return mint(*this) += a;} mint operator-(const mint a) const { return mint(*this) -= a;} mint operator*(const mint a) const { return mint(*this) *= a;} mint pow(ll t) const { if (!t) return 1; mint a = pow(t>>1); a *= a; if (t&1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod-2);} mint& operator/=(const mint a) { return *this *= a.inv();} mint operator/(const mint a) const { return mint(*this) /= a;} }; istream& operator>>(istream& is, const mint& a) { return is >> a.x;} ostream& operator<<(ostream& os, const mint& a) { return os << a.x;} //昆布 struct combination { vector<mint> fact, ifact; combination(int n):fact(n+1),ifact(n+1) { //assert(n < mod); //任意modではここ消すcombmain内に fact[0] = 1; for (int i = 1; i <= n; ++i) fact[i] = fact[i-1]*i; ifact[n] = fact[n].inv(); for (int i = n; i >= 1; --i) ifact[i-1] = ifact[i]*i; } mint operator()(int n, int k) { if (k < 0 || k > n) return 0; return fact[n]*ifact[k]*ifact[n-k]; } mint p(int n,int k){ return fact[n]*ifact[n-k] ; //kは個数 } } co(1000005) ; mint modpow(ll a,ll b){ if(b==0) return 1 ; mint c= modpow(a,b/2) ; if(b%2==1) return c*c*a ; else return c*c ; } mint mmodpow(mint a,ll b){ if(b==0) return 1ll ; mint c=mmodpow(a,(b/2)) ; if(b%2==1) return c*c*a ; else return c*c ; } mint komb(ll n,ll m){ mint x=1 ;mint y=1 ; rep(i,m){ x*= n-i ; y*= i+1 ; } return x/y ; } map<ll,ll> factor(ll n){ //素因数とオーダーをマップで管理 map <ll,ll> ord ; for(ll i=2;i*i<=n;i++){ if(n%i==0){ int res=0; while(n%i==0){ n/=i; res++; } ord[i]=res; } } if(n!=1) ord[n]++; return ord ; } struct UnionFind { vector<int> d; UnionFind(int n=0): d(n,-1) {} int find(int x) { if (d[x] < 0) return x; return d[x] = find(d[x]); } bool unite(int x, int y) { x = find(x); y = find(y); if (x == y) return false; if (d[x] > d[y]) swap(x,y); d[x] += d[y]; d[y] = x; return true; } bool same(int x, int y) { return find(x) == find(y);} int size(int x) { return -d[find(x)];} }; // sum(x) x以下の和 // sum(a,b) a以上b以下の和 template<typename T> struct BIT { int n; vector<T> d; BIT(int n=0):n(n),d(n+1) {} void add(int i, T x=1) { //x=1ならsumは個数のカウント for (i++; i <= n; i += i&-i) { d[i] += x; } } T sum(int i) { T x = 0; for (i++; i; i -= i&-i) { x += d[i]; } return x; } T sum(int i,int j) { if(i>0) return sum(j)-sum(i-1); else return sum(j); } }; vector<ll> alldiv(ll n){ vector<ll> ans; if(n<0) n*=-1; for(ll i=1;i*i<=n;++i){ if(n%i==0){ if(i*i==n) ans.pb(i); else{ans.pb(i);ans.pb(n/i);} } } return ans; } int main(){ ios::sync_with_stdio(false) ; cin.tie(nullptr) ; ll n; cin>>n; vector<pair<P,ll>> A; rep(i,n){ ll l,r,num; cin>>l>>r>>num; if(num>=n) continue; A.pb({{l,-2},num}); A.pb({{r+1,-1},num}); } ll q; cin>>q; rep(i,q){ ll x; cin>>x; A.pb({{x,i},INF}); } vector<ll> ans(q); sort(A.begin(),A.end()); vector<ll> cnt(n); ll k=A.size(); set<ll> st; rep(i,n+1) st.insert(i); rep(i,k){ ll x=A[i].fi.fi; ll y=A[i].fi.se; ll num=A[i].se; if(y>=0){ ll bns=*st.begin(); ans[y]=bns; } if(y==-2){ if(st.find(num)!=st.end()){ st.erase(num); } cnt[num]++; } if(y==-1){ if(cnt[num]==1){ st.insert(num); } cnt[num]--; } } rep(i,q) cout<<ans[i]<<endl; return 0; }