結果

問題 No.900 aδδitivee
ユーザー ttttan2ttttan2
提出日時 2020-03-09 14:42:19
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 4,211 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 181,924 KB
実行使用メモリ 24,068 KB
最終ジャッジ日時 2023-08-07 18:49:57
合計ジャッジ時間 13,870 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,988 KB
testcase_01 AC 3 ms
6,216 KB
testcase_02 AC 3 ms
6,308 KB
testcase_03 AC 3 ms
6,004 KB
testcase_04 AC 2 ms
6,104 KB
testcase_05 AC 3 ms
6,004 KB
testcase_06 AC 3 ms
6,008 KB
testcase_07 AC 334 ms
19,404 KB
testcase_08 AC 334 ms
19,428 KB
testcase_09 AC 334 ms
19,452 KB
testcase_10 AC 341 ms
19,256 KB
testcase_11 AC 343 ms
19,224 KB
testcase_12 AC 336 ms
19,276 KB
testcase_13 AC 342 ms
19,260 KB
testcase_14 AC 340 ms
19,396 KB
testcase_15 AC 343 ms
19,400 KB
testcase_16 AC 334 ms
19,556 KB
testcase_17 AC 336 ms
19,224 KB
testcase_18 AC 360 ms
19,252 KB
testcase_19 AC 350 ms
19,400 KB
testcase_20 AC 352 ms
19,300 KB
testcase_21 AC 349 ms
19,400 KB
testcase_22 AC 307 ms
23,864 KB
testcase_23 AC 305 ms
23,780 KB
testcase_24 AC 304 ms
24,068 KB
testcase_25 AC 304 ms
23,852 KB
testcase_26 AC 310 ms
23,956 KB
testcase_27 AC 306 ms
23,820 KB
testcase_28 AC 305 ms
23,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
        }
    }
}







0