第一题结合当下疫情,是个分配救灾物资的题目,暴力解通过率90%。代码: #include <iostream> using namespace std; struct Thing { string t_name; int num; }; struct Need { string h_name; Thing thing; }; int main() { int N; while(cin >> N) { Thing give[N]; Thing need_thing[N]; ...