我的思路是把数拆分放在vector里,然后排序,求和为一半的子集,本地测试没有找到不符合的实例,但是通过率一直很低,有人呢知道为什么吗?代码如下: #include "stdafx.h" #include <iostream> #include <vector> #include <sstream> #include <algorithm> using namespace std; bool fun(vector<int> res,int sum) ...