摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 23:58 TPPPP72 阅读(7) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 23:48 TPPPP72 阅读(4) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 23:38 TPPPP72 阅读(2) 评论(0) 推荐(0)
摘要: 打表King何意味,, #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map 阅读全文
posted @ 2025-10-13 23:33 TPPPP72 阅读(6) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 23:14 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: 这题很有意思啊,写个解析。 观察数字坐标的移动方式,不难发现所有的移动以 ↗↘↗↖ 为一组不断循环,且每次移动后对应坐标的点变为上个点 \(+1\) 。 那么代码就很好模拟了,我们只需要使用 {{1, 1}, {1, -1}, {1, 1}, {-1, 1}} 来模拟每次的移动即可。 #includ 阅读全文
posted @ 2025-10-13 21:31 TPPPP72 阅读(6) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 20:17 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 20:06 TPPPP72 阅读(6) 评论(0) 推荐(0)
摘要: 转置 \[D = \begin{vmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2 阅读全文
posted @ 2025-10-13 19:38 TPPPP72 阅读(46) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cmath> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> 阅读全文
posted @ 2025-10-13 16:33 TPPPP72 阅读(7) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cmath> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> 阅读全文
posted @ 2025-10-13 16:20 TPPPP72 阅读(4) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 16:07 TPPPP72 阅读(7) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 13:35 TPPPP72 阅读(4) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 13:33 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 13:30 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 13:24 TPPPP72 阅读(4) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 13:01 TPPPP72 阅读(8) 评论(0) 推荐(0)
摘要: 定义 \[\begin{vmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{n1} & a_{n2} & 阅读全文
posted @ 2025-10-13 11:03 TPPPP72 阅读(106) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 09:30 TPPPP72 阅读(7) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 09:29 TPPPP72 阅读(3) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 09:18 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iomanip> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unorde 阅读全文
posted @ 2025-10-13 09:15 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 09:12 TPPPP72 阅读(5) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 08:22 TPPPP72 阅读(8) 评论(0) 推荐(0)
摘要: #include <algorithm> #include <cstdint> #include <iostream> #include <limits> #include <numeric> #include <string> #include <unordered_map> #include < 阅读全文
posted @ 2025-10-13 07:54 TPPPP72 阅读(7) 评论(0) 推荐(0)