摘要: # 游乐园 因为套票更加便宜,根据贪心应该尽可能的选择套票。 #include<bits/stdc++.h> using namespace std; int main(){ int x , y; cin >> x >> y; cout << 60 * x + 40 * y - 10 * min( 阅读全文
posted @ 2022-11-14 19:24 PHarr 阅读(31) 评论(0) 推荐(0) 编辑