加载中...

摘要: 1007 本题题解先略过,重点看求 \(dp[u][]\) 前缀和的部分: auto s = dp[u]; for(int c = 0; c < m; c ++){ for(int state = 0; state < (1 << m); state ++){ if(!(state >> c & 1 阅读全文
posted @ 2025-07-19 11:00 jxs123 阅读(38) 评论(0) 推荐(0)