同样一个代码,我在本地跑,在线调试时都会输出正确答案130,但提交就会输出错误答案120。下面是两个图片和代码 #include <iostream> #include <algorithm> #include <set> #include <vector> #include <unordered_map> using namespace std; struct ShopThing{ int cost; int importantValue; int masterId; }; struct MainThi...