标题 Educational Codeforces Round 89 (Rated for Div. 2) A Shovels and Swords 题意 制造一铲子需要2棍子1钻石,制造一把剑需要2钻石1棍子。它们都可以卖一翡翠,有a棍子b钻石,问可以卖多少钻石? 题解 #include <bits/stdc++.h> using namespace std; const int maxn=2e5+10; int main() { int t,a,b; cin >> t; while(t--) { cin >&g...