当前位置: 首页 > 工具软件 > Bones > 使用案例 >

[USACO08OCT]Bovine Bones G

太叔永新
2023-12-01
/*****************************************
备注:
******************************************/
#include <queue>
#include <math.h>
#include <stack>
#include <stdio.h>
#include <iostream>
#include <vector>
#include <iomanip>
#include <string.h>
#include <algorithm>
using namespace std;
void swap(int x,int y,int t) 
{  
	cin >> x >> y >> t;
	t = x,x = y,y = t;
}
int main()
{
    int a,b,c;
    cin>>a>>b>>c;
    if(a<b) swap(a,b);
    if(b<c) swap(b,c);
    if(a<b) swap(a,b);
    if(b<=a-c+1)
        cout<<1+b+c;
    else
        cout<<2+a+(b-a+c-1)/2;
    return 0;
}

 类似资料:

相关阅读

相关文章

相关问答