关注
把阿里内推时做的那题做了一便,该写的坑还是得填。。 // 自己的写的,不一定对,但是能过给的样例。 // 主要思路就是 深度搜索,终止条件就是 不能再加组合时,和best对比。 #include <iostream> #include <string> #include <sstream> using namespace std; int bom[9][10]; int product[10]; int cnt[10]; int res_count[10]; int res_sum = 0; int zero_count = 0; int n,m; char c ; void isbest(){ int tmp_count = 0; int sum = 0; for(int i =0; i <m;i++){ if(product[i] == 0){ tmp_count ++; } sum += product[i]; } if(tmp_count>zero_count ||(tmp_count == zero_count&&sum< res_sum)){ zero_count = tmp_count; for(int i =0; i < m;i++){ res_count[i] = cnt[i]; } res_sum = sum; } } // m 为组合数量 void dfs(int m){ for(int i =0; i < m;i++){ if(product[i] <0) return; } isbest(); for(int i = 0; i < m;i++){ cnt[i]++; // 使用组合i for(int j = 0;j < m;j++){ product[j] -= bom[i][j]; } dfs(m); // 回滚组合i for(int j = 0;j < m;j++){ product[j] += bom[i][j]; } cnt[i]--; } } int main(){ // m 为组合数, n为商品数目 cin >>n>>c>>m; // 读取商品数量 for(int i = 0 ; i < n;i++){ if(i <n-1){ cin >> product[i]; cin >> c; }else if(i == n-1) { cin >> product[i]; } } cin.ignore(); //读取组合 string s; stringstream str; for(int i = 0; i < m;i++){ getline(cin,s,'\n'); int pos = s.find(","); int start = 0; int n_copy = 0; while(n_copy<n+1){ if(n_copy >0&n_copy < n){ str << s.substr(start,pos-start) <<endl; str>>bom[i][n_copy-1]; str.str(""); }else if(n_copy == n){ str << s.substr(start,s.size()-start)<<endl; str>>bom[i][n_copy-1]; str.str(""); } start = pos+1; pos = s.find(",",start); n_copy++; } } dfs(m); for(int i =0; i<m;i++) { if(res_count[i] != 0) cout << "bom" <<i+1 <<"*"<< res_count[i]<<endl; } return 0; }
查看原帖
点赞 评论
相关推荐
zachsun:华科硕士给13级?有点逆天了吧
点赞 评论 收藏
分享
mmvvcc:没通过你就偷着乐吧,这样的进去你天天受气
点赞 评论 收藏
分享
牛客热帖
正在热议
# 25届秋招总结 #
258643次浏览 2130人参与
# 0offer是寒冬太冷还是我太菜 #
885389次浏览 7891人参与
# 北方华创开奖 #
23429次浏览 260人参与
# 地方国企笔面经互助 #
2764次浏览 7人参与
# 学历or实习经历,哪个更重要 #
42773次浏览 319人参与
# 选完offer后,你后悔学本专业吗 #
12666次浏览 91人参与
# 应届生被毁约被毁意向了怎么办 #
27891次浏览 243人参与
# 你最想要的公司福利是? #
41356次浏览 139人参与
# 查收我的offer竞争力报告 #
18515次浏览 248人参与
# 如何一边实习一边秋招 #
986684次浏览 12607人参与
# 一觉醒来,我觉醒了超级打工人系统 #
3212次浏览 36人参与
# 嵌入式转岗的难度怎么样 #
11086次浏览 250人参与
# 面试体验感最好的是哪家? #
83462次浏览 815人参与
# 机械应届生薪资要多少才合适? #
12512次浏览 61人参与
# 如何写一份好简历 #
604185次浏览 8489人参与
# 秋招OC许愿 #
227654次浏览 1878人参与
# 你认为第一份工作重要吗 #
5395次浏览 49人参与
# 秋招被确诊为…… #
59415次浏览 316人参与
# 来聊聊机械薪资天花板是哪家 #
65173次浏览 441人参与
# 你觉得第一学历对求职有影响吗? #
14982次浏览 121人参与
# 面试题刺客退退退 #
137835次浏览 2094人参与