标签:style blog color io os for sp div on
先说一下C题
很明显的贪心,自己写了40行左右的代码...而且是略复杂的思路
然后看了时间最短的人的代码...瞬间有一种佩服得五体投地的感觉!
#include <iostream> #include <algorithm> using namespace std; int main() { long long a[3]; cin>>a[0]>>a[1]>>a[2]; long long x=a[0]+a[1]+a[2]; x=x/3; sort(a,a+3); if(2*(a[0]+a[1])<=a[2])x=a[0]+a[1]; cout<<x<<endl; return 0; }
标签:style blog color io os for sp div on
原文地址:http://www.cnblogs.com/polebug/p/4032765.html