张添寓
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
代码(根据[题解](https://www.luogu.com.cn/article/pmsvn20c)思路写的): ```cpp #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0…
在讨论《为什么不能直接用哈希表来做,题解和标签上都没有》回复:
@[kobelukuankuan](luogu://user/1124371) ```cpp #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n,w; cin>>n>…
# [P14359 [CSP-J 2025] 异或和 / xor](https://www.luogu.com.cn/problem/P14359) ## 前言:异或运算的重要性质 异或运算有一个关键特性: - 如果 $a \oplus b = c$,那么 $a \oplus c = b$ 且 $b \oplus c…