網頁

Beats 100%|C++ BFS LCA binary lifting與模指數運算解Leetcode難題3559 Number of Ways to Assign Edge Weights II


#anwendeng 
Beats 100%|C++ BFS LCA binary lfting與模指數運算解Leetcode難題3559  Number of Ways to Assign Edge Weights II
- Adjacency-list: array linked Lists 
- BFS - construct parent[], level[]
- LCA- binary lifting - distance
- Fast modular power , pow2
- query call distance & pow2 to give answer

2026年6月11日 星期四

C++實作快速模指數運算LeetCode、Competitive Programming

#cplusplus 實作快速模指數運算
許多刷題如#Leetcode 需要有實作#快速模指數 運算的#modular #exponentiation 技能 #binary  method
計算 x**N (mod P)用for迴圈跑N次其實是很慢!特別N很大

LeetCode 3689 | 0ms C++ minmax & Python 1-Liner


C++ #minmax 0ms Py #1liner 速解Leetcode 3689  Maximum Total Subarray Value I 

2026年6月8日 星期一

0ms branchless|C++ Py3 2-pointer速解Leetcode 2161 Partition Array According to Given Pivot


C++ Py3 2pointer速解Leetcode2161  Partition Array According to Given Pivot
影片說明解法Py3用迴圈 list 相加。
[C++branchless 0ms請進]