摘要: 状态压缩 即将十进制,字符串,数组等转化为二进制,应用于搜索,动态规划。 P1225 黑白棋游戏 #include<bits/stdc++.h> using namespace std; void write(int k){ if(k/10==0){ putchar((char)(k+'0')); 阅读全文
posted @ 2025-08-18 19:22 yuhui666 阅读(7) 评论(0) 推荐(0)