結果
問題 | No.900 aδδitivee |
ユーザー | ttttan2 |
提出日時 | 2020-03-09 14:42:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 384 ms / 2,000 ms |
コード長 | 4,211 bytes |
コンパイル時間 | 2,411 ms |
コンパイル使用メモリ | 184,436 KB |
実行使用メモリ | 24,764 KB |
最終ジャッジ日時 | 2024-11-07 23:47:21 |
合計ジャッジ時間 | 13,517 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,760 KB |
testcase_01 | AC | 4 ms
5,760 KB |
testcase_02 | AC | 5 ms
5,760 KB |
testcase_03 | AC | 5 ms
5,760 KB |
testcase_04 | AC | 5 ms
5,760 KB |
testcase_05 | AC | 4 ms
5,760 KB |
testcase_06 | AC | 4 ms
5,760 KB |
testcase_07 | AC | 384 ms
19,688 KB |
testcase_08 | AC | 375 ms
19,700 KB |
testcase_09 | AC | 366 ms
19,564 KB |
testcase_10 | AC | 361 ms
19,564 KB |
testcase_11 | AC | 366 ms
19,564 KB |
testcase_12 | AC | 380 ms
19,692 KB |
testcase_13 | AC | 360 ms
19,564 KB |
testcase_14 | AC | 367 ms
19,560 KB |
testcase_15 | AC | 371 ms
19,696 KB |
testcase_16 | AC | 369 ms
19,576 KB |
testcase_17 | AC | 361 ms
19,692 KB |
testcase_18 | AC | 373 ms
19,468 KB |
testcase_19 | AC | 377 ms
19,692 KB |
testcase_20 | AC | 372 ms
19,692 KB |
testcase_21 | AC | 374 ms
19,692 KB |
testcase_22 | AC | 309 ms
24,764 KB |
testcase_23 | AC | 307 ms
24,636 KB |
testcase_24 | AC | 310 ms
24,640 KB |
testcase_25 | AC | 305 ms
24,672 KB |
testcase_26 | AC | 309 ms
24,764 KB |
testcase_27 | AC | 309 ms
24,764 KB |
testcase_28 | AC | 306 ms
24,764 KB |
ソースコード
#include<bits/stdc++.h> //ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); //clock_t start=clock();clock_t end=clock();cout<<(double)(end-start)/CLOCKS_PER_SEC<<endl; using namespace std; typedef long long ll; typedef unsigned long long ull; typedef unsigned int ui; typedef pair<int,int> pii; typedef pair<pii,int> ppii; typedef pair<int,pii> pipi; typedef pair<ll,ll> pll; typedef pair<pll,ll> ppll; typedef pair<ll,pll> plpl; typedef tuple<ll,ll,ll> tl; typedef pair<double,double> pdd; ll mod=1000000007; ll mod2=998244353; ll mod3=1000003; ll mod4=998244853; ll mod5=1000000009; ll inf=1LL<<60; double pi=3.141592653589793238462643383279L; double eps=1e-9; #define rep(i,m,n) for(ll i=m;i<n;i++) #define rrep(i,n,m) for(ll i=n;i>=m;i--) #define srep(itr,st) for(auto itr=st.begin();itr!=st.end();itr++) #define mrep(itr,mp) for(auto itr=mp.begin();itr!=mp.end();itr++) #define Max(a,b) a=max(a,b) #define Min(a,b) a=min(a,b) int dh[4]={1,-1,0,0}; int dw[4]={0,0,1,-1}; int ddh[8]={-1,-1,-1,0,0,1,1,1}; int ddw[8]={-1,0,1,-1,1,-1,0,1}; ll gcd(ll a,ll b){ if(a<b)swap(a,b); if(b==0)return a; if(a%b==0)return b; return gcd(b,a%b); } ll Pow(ll n,ll k){ ll ret=1; ll now=n; while(k>0){ if(k&1)ret*=now; now*=now; k/=2; } return ret; } ll beki(ll n,ll k,ll md){ ll ret=1; ll now=n; while(k>0){ if(k%2==1){ ret*=now; ret%=md; } now*=now; now%=md; k/=2; } return ret; } ll gyaku(ll n,ll md){ return beki(n,md-2,md); } ll popcount(ll n){ ll ret=0; ll u=n; while(u>0){ ret+=u%2; u/=2; } return ret; } struct LST{ private: int n; vector<ll> node,lazy; vector<bool> flag; public: LST(vector<ll> v){ ll sz=v.size(); n=1;while(n<sz)n*=2; node.resize(2*n-1); lazy.resize(2*n-1,0); flag.resize(2*n-1,false); rep(i,0,sz)node[i+n-1]=v[i]; rrep(i,n-2,0)node[i]=node[i*2+1]+node[i*2+2]; } void eval(ll k,ll l,ll r){ if(flag[k]){ node[k]+=lazy[k]; if(r-l>1){ lazy[2*k+1]+=lazy[k]/2; lazy[2*k+2]+=lazy[k]/2; flag[2*k+1]=flag[2*k+2]=true; } flag[k]=false; lazy[k]=0; } } void update(ll a,ll b,ll x,ll k=0,ll l=0,ll r=-1){ if(r<0)r=n; eval(k,l,r); if(b<=l||r<=a)return; if(a<=l&&r<=b){ lazy[k]=(r-l)*x; flag[k]=true; eval(k,l,r); } else{ update(a,b,x,2*k+1,l,(l+r)/2); update(a,b,x,2*k+2,(l+r)/2,r); node[k]=node[2*k+1]+node[2*k+2]; } } ll sum(ll a,ll b,ll k=0,ll l=0,ll r=-1){ if(r<0)r=n; eval(k,l,r); if(b<=l||a>=r)return 0; if(a<=l&&b>=r)return node[k]; ll m1=sum(a,b,2*k+1,l,(l+r)/2); ll m2=sum(a,b,2*k+2,(l+r)/2,r); return m1+m2; } }; vector<pii> v[100001]; int len[100001][4]; vector<int> ma,usi; ll par[100001]; void dfs(int now){ len[now][0]=ma.size(); len[now][3]=usi.size(); ma.push_back(now); rep(i,0,v[now].size()){ int ne=v[now][i].first; par[ne]=v[now][i].second; dfs(ne); } len[now][1]=usi.size(); len[now][2]=ma.size()-len[now][0]; usi.push_back(now); } int main(){ ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); int n;cin>>n; rep(i,0,n-1){ ll a,b,c;cin>>a>>b>>c; v[a].push_back({b,c}); } dfs(0); LST seg1(vector<ll>(n,0)); LST seg2(vector<ll>(n,0)); rep(i,1,n){ ll pp=par[i]; seg1.update(len[i][0],len[i][0]+1,pp); seg2.update(len[i][1],len[i][1]+1,pp); } int q;cin>>q; rep(i,0,q){ int t;cin>>t; if(t==1){ ll a,x;cin>>a>>x; ll l=len[a][0]+1; ll r=len[a][0]+len[a][2]; seg1.update(l,r,x); r=len[a][1]; l=r-len[a][2]+1; seg2.update(l,r,x); } else{ ll a;cin>>a; ll ans=seg1.sum(0,len[a][0]+1)-seg2.sum(0,len[a][3]); cout<<ans<<endl; } } }