#include<bits/stdc++.h>
using namespace std;
ifstream fin("02-02.txt");
ofstream fout("output.out");
#define cin fin
#define cout fout
#define int long long
int n,MOD,phi;
int put(int a, int exp)
{
if(exp==0)
return 1;
if(exp%2==0)
return put((a*a)%MOD,exp/2);
else
return (put((a*a)%MOD,exp/2)*a)%MOD;
}
int inm[200005];
int qry_brut(int poz)
{
return inm[poz];
}
void upd_brut(int le, int ri, int newv)
{
for(int i=le;i<=ri;i++)
inm[i]=(inm[i]*newv)%MOD;
}
int aib[200005];
int qry(int poz)
{
int aux=1;
for(int i=poz;i>0;i-=(i&(-i)))
aux = (aux * aib[i])%MOD;
return aux;
}
void upd(int poz, int newv)
{
for(int i=poz;i<=n;i+=(i&(-i)))
aib[i] = (aib[i] * newv)%MOD;
}
int aib0[200005];
int qry0(int poz)
{
int aux=0;
for(int i=poz;i>0;i-=(i&(-i)))
aux+=aib0[i];
return aux;
}
void upd0(int poz, int newv)
{
for(int i=poz;i<=n;i+=(i&(-i)))
aib0[i]+=newv;
}
int h[200005];
vector<int> con[200005];
int parent[200005];
int tole[200005][45];
int tori[200005][45];
int cntd[200005];
int cntd2[200005];
int depth[200005];
int pos[200005];
void dfs(int nod)
{
cntd[depth[nod]]++;
for(auto adj:con[nod])
{
if(adj!=parent[nod])
{
depth[adj]=depth[nod]+1;
parent[adj]=nod;
dfs(adj);
}
}
}
void dfs2(int nod)
{
cntd2[depth[nod]]++;
pos[nod] = cntd[depth[nod]-1] + cntd2[depth[nod]];
//cout<<nod<<" "<<pos[nod]<<" pos\n";
for(int d=0;d<=42;d++)
{
tole[nod][d] = n+5;
tori[nod][d] = -1;
}
tole[nod][0] = tori[nod][0] = pos[nod];
for(auto adj:con[nod])
{
if(adj!=parent[nod])
{
dfs2(adj);
for(int d=1;d<=42;d++)
{
tole[nod][d] = min(tole[nod][d], tole[adj][d-1]);
tori[nod][d] = max(tori[nod][d], tori[adj][d-1]);
}
}
}
}
void faupd(int le, int ri, int newv, int inv)
{
if(le>ri)
return;
if(newv!=0)
{
upd(le,newv);
upd(ri+1,inv);
upd_brut(le,ri,newv);
}
else
{
upd0(le,1);
upd0(ri+1,-1);
}
}
int calc_phi(int x)
{
int d=2,prod=x;
while(d*d<=x)
{
if(x%d==0)
{
while(x%d==0)
x/=d;
prod = prod / d * (d-1);
}
if(d==2)
d--;
d+=2;
}
if(x>1)
prod = prod / x * (x-1);
return prod;
}
int getrez(int poz)
{
if(qry0(poz)>0)
return 0;
else
return qry_brut(poz);
}
int le[200005],ri[200005];
signed main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
cin>>n>>MOD;
phi = calc_phi(MOD);
int a,b;
for(int i=1;i<n;i++)
{
cin>>a>>b;
con[a].push_back(b);
con[b].push_back(a);
}
depth[1]=1;
dfs(1);
for(int i=2;i<=n;i++)
cntd[i]+=cntd[i-1];
dfs2(1);
for(int i=1;i<=n;i++)
{
cin>>h[i];
aib[i]=1;
inm[i]=1;
}
int cntq,tip,d;
cin>>cntq;
for(int pas=1;pas<=cntq;pas++)
{
cin>>tip;
if(tip==1)
{
cin>>a>>d>>b;
for(int i=max((int)1,depth[a]-d);i<=min(n,depth[a]+d);i++)
{
le[i]=n+5;
ri[i]=-1;
}
int cur=a;
for(int i=0;i<=d;i++)
{
if(cur==0)
break;
for(int j=0;j<=d-i;j++)
{
if(depth[cur]+j>n)
break;
le[depth[cur]+j] = min(le[depth[cur]+j], tole[cur][j]);
ri[depth[cur]+j] = max(ri[depth[cur]+j], tori[cur][j]);
}
cur = parent[cur];
}
int inv=put(b,phi-1);
for(int i=max((int)1,depth[a]-d);i<=min(n,depth[a]+d);i++)
{
faupd(le[i],ri[i],b,inv);
}
}
else
{
cin>>a;
cout<<(h[a]*getrez(pos[a]))%MOD<<"\n";
//cout<<h[a]<<" "<<qry_brut(pos[a])<<" zzz\n";
}
}
return 0;
}
/**
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
20 ms |
37976 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
21 ms |
37952 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
21 ms |
37952 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
20 ms |
37944 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
21 ms |
38084 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
20 ms |
37976 KB |
Execution killed with signal 8 |
2 |
Halted |
0 ms |
0 KB |
- |