上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 136 下一页
摘要: 参考:https://www.cnblogs.com/littlehb/p/15464421.html#define lowbit(x) (x & -x) int f3(int x) { int res = 0; while (x) { x -= lowbit(x); res++; } return 阅读全文
posted @ 2025-04-15 17:49 katago 阅读(14) 评论(0) 推荐(0)
摘要: https://www.bilibili.com/video/BV1Sy421a78Chttps://github.com/algorithmzuo/algorithm-journey/blob/main/src/class102/Code02_Counting.java 阅读全文
posted @ 2025-04-15 17:47 katago 阅读(11) 评论(0) 推荐(0)
摘要: https://oi-wiki.org/graph/mst 习题可以做做https://www.luogu.com.cn/problem/P1195P1195 口袋的天空P2504 [HAOI2006] 聪明的猴子P2330 [SCOI2005] 繁忙的都市prim可视化 https://www.c 阅读全文
posted @ 2025-04-15 17:40 katago 阅读(7) 评论(0) 推荐(0)
摘要: 二进制子集枚举 https://www.acwing.com/blog/content/23501/ 从集合论到位运算,常见位运算技巧分类总结! https://leetcode.cn/discuss/post/3571304/cong-ji-he-lun-dao-wei-yun-suan-chan 阅读全文
posted @ 2025-04-15 15:03 katago 阅读(15) 评论(0) 推荐(0)
摘要: 命令行编译:g++ -std=c++11 -O2 -Wall test.cpp -o testThis command produces a binary file test from the source code test.cpp. The compiler follows the C++11 阅读全文
posted @ 2025-04-14 17:00 katago 阅读(11) 评论(0) 推荐(0)
摘要: dp-bitmasks 在中国叫做 状压dphttps://usaco.guide/gold/dp-bitmasks?lang=cpp题目https://cses.fi/problemset/task/1690/#include <bits/stdc++.h> using namespace std 阅读全文
posted @ 2025-04-14 14:26 katago 阅读(14) 评论(0) 推荐(0)
摘要: P10447 最短 Hamilton 路径https://www.luogu.com.cn/problem/P10447Description给定一张 n 个点的带权无向完全图,求出从 0 到 n−1 经过每个点恰好一次的最短路径。SolutionBrute Force考虑最朴素的做法。由于每个点只 阅读全文
posted @ 2025-04-11 16:50 katago 阅读(20) 评论(0) 推荐(0)
摘要: https://www.52pojie.cn/thread-1093277-1-1.html三、安装包下载:链接:https://pan.baidu.com/s/13_r7x9YjMnAMP4jlmoGvGg提取码:vw4d安装包大小超过100M,不能上传蓝奏云,只能上传百度网盘了,各位请见谅。四、 阅读全文
posted @ 2023-11-14 13:34 katago 阅读(1509) 评论(0) 推荐(0)
摘要: open_basedir指令用来限制PHP只能访问那些目录,通常我们只需要设置Web文件目录即可。如果需要 include 加载外部脚本,也需要把脚本所在目录路径加入到open_basedir指令中,多个目录以分号(;)分割。 使用open_basedir需要注意的一点是,指定的显示实际上是前缀,而 阅读全文
posted @ 2023-10-16 18:50 katago 阅读(2260) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_51478862/article/details/124580957 阅读全文
posted @ 2023-10-10 23:34 katago 阅读(46) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 136 下一页