采蜜中
采蜜中
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
采蜜中的博客
全部文章
(共2篇)
题解 | #Knapsack Problem#
遍历求和 #include <iostream> using namespace std; int main() { int T; cin >> T; while (T--) { int n, w, c; ci...
2021-04-18
2
553
题解 | #Captcha Cracker#
判断输入的字符串内的指定字符串 用string里的函数substr()提取字符串 #include <iostream> #include <string> using namespace std; int main(){ int n; cin >&g...
2021-04-18
4
647