Codeforces Round #469 (Div. 2) A/B
A题http://codeforces.com/contest/950/problem/A题意:给定三个数l,r,a,要我们求min(l+a1,r+a2)的最大值再乘以2;a1+a2<=a。 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 typedef long long ll...