16695

整数的划分 NC16695

原题链接 思路 本题目数据量较弱,所以可以考虑直接用dfs 代码 #include<iostream> using namespace std; int ans; void dfs(int n, int d, int k){ if(k == 0){ if(n == 0) ans++; return; ......
整数 16695 NC
共1篇  :1/1页 首页上一页1下一页尾页