松 鼠的新家是一棵樹,前幾天剛剛裝修了新家,新家有n個房間,並且有n-1根樹枝連線,每個房間都可以相互到達,且倆個房間之間的路線都是唯一的。天哪,他 居然真的住在「樹」上。松鼠想邀請****前來參觀,並且還指定乙份參觀指南,他希望**能夠按照他的指南順序,先去a1,再去a2,……,最後到an, 去參觀新家。
可是這樣會導致**重複走很多房間,懶惰的**不聽地推辭。可是松鼠告訴他,每走到乙個房間,他就可以從房間拿一塊糖果吃。**是個饞傢伙,立馬就答應了。
現在松鼠希望知道為了保證**有糖果吃,他需要在每乙個房間各放至少多少個糖果。因為松鼠參觀指南上的最後乙個房間an是餐廳,餐廳裡他準備了豐盛的大餐,所以當**在參觀的最後到達餐廳時就不需要再拿糖果吃了。
第一行乙個整數n,表示房間個數
第二行n個整數,依次描述a1-an
接下來n-1行,每行兩個整數x,y,表示標號x和y的兩個房間之間有樹枝相連。
一共n行,第i行輸出標號為i的房間至少需要放多少個糖果,才能讓**有糖果吃。
51 4 5 3 2
1 22 4
2 34 512
1212<= n <=300000
正解:樹鏈剖分+線段樹
解題報告:
鏈剖裸題。
1//it is made by jump~
2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #include
13#ifdef win32
14#define ot "%i64d"
15#else
16#define ot "%lld"
17#endif
18using
namespace
std;
19 typedef long
long
ll;20
const
int maxn = 300011;21
const
int maxm = 600011;22
intn,ecnt;
23int
first[maxn],next[maxm],to[maxm];
24int
top[maxn],son[maxn],deep[maxn],father[maxn],id[maxn],size[maxn],pre[maxn];
25int
que[maxn],ql,qr,ans[maxn];
2627
struct
nodea[maxn*4
];30
31 inline int
getint()
3240
41 inline void dfs1(int x,int
fa)48}49
50 inline void dfs2(int x,int
fa)56}57
58 inline void update(int root,int l,int
r)60
int mid=(l+r)/2; int lc=root*2,rc=lc+1;61
if(ql<=mid) update(lc,l,mid); if(qr>mid) update(rc,mid+1
,r);62}
6364 inline void lca(int x,int
y)71
if(deep[x]72 ql=id[y]; qr=id[x]; update(1,1
,n);73}
7475 inline void pushdown(int root,int l,int
r)77
int mid=(l+r)/2; int lc=root*2,rc=lc+1
;78 a[lc].add+=a[root].add; a[rc].add+=a[root].add;
79 pushdown(lc,l,mid); pushdown(rc,mid+1
,r);80}
8182 inline void
work()
90 deep[1]=0; dfs1(1,0
);91 ecnt=0; top[1]=1; dfs2(1,0
);92
for(int i=2;i<=n;i++)
93 pushdown(1,1,n); for(int i=2;i<=n;i++) ans[que[i]]--;
94for(int i=1;i<=n;i++) printf("
%d\n
",ans[i]);95}
9697
intmain()
98
Bzoj3631 JLOI2014 松鼠的新家
solution 先考慮在序列上的做法。注意到是先處理完所有修改後才做詢問,那麼每次區間加上乙個數時就只須在左右端點分別打上乙個 和 的標記,最後詢問時將整個序列從左到右掃一遍即可。樹上同理。include include include include using namespace std co...
BZOJ3631 JLOI2014 松鼠的新家
題目大意 從編號1到n遍歷圖 中間經過點不算遍歷過 求每個點經過了幾次 樹剖,每次i到i 1都相當於一次鏈上修改,最後單點查詢就行。include include include include define n 300009 define inf 0x7fffff define ll long l...
BZOJ3631 JLOI2014 松鼠的新家
松鼠的新家是一棵樹,前幾天剛剛裝修了新家,新家有n個房間,並且有n 1根樹枝連線,每個房間都可以相互到達,且倆個房間之間的路線都是唯一的。天哪,他居然真的住在 樹 上。松鼠想邀請 前來參觀,並且還指定乙份參觀指南,他希望 能夠按照他的指南順序,先去a1,再去a2,最後到an,去參觀新家。可是這樣會導...