Codeforces Div.3 C. Gourmet Cat——————思维,贪心

本文介绍了一种算法,帮助猫主人Polycarp根据背包中鱼食、兔肉汤和鸡腿的每日配给数量,选择最佳出发日,使他的猫GourmetCat在旅行期间无需额外购买食物的情况下尽可能长时间地享受美食。

C. Gourmet Cat

Polycarp has a cat and his cat is a real gourmet! Dependent on a day of the week he eats certain type of food:

  • on Mondays, Thursdays and Sundays he eats fish food;
  • on Tuesdays and Saturdays he eats rabbit stew;
  • on other days of week he eats chicken stake.

Polycarp plans to go on a trip and already packed his backpack. His backpack contains:

  • a daily rations of fish food;
  • b daily rations of rabbit stew;
  • c daily rations of chicken stakes.

Polycarp has to choose such day of the week to start his trip that his cat can eat without additional food purchases as long as possible. Print the maximum number of days the cat can eat in a trip without additional food purchases, if Polycarp chooses the day of the week to start his trip optimally.

Input
The first line of the input contains three positive integers a, b and c (1≤a,b,c≤7⋅108)(1≤a,b,c≤7⋅10^8)(1a,b,c7108) — the number of daily rations of fish food, rabbit stew and chicken stakes in Polycarps backpack correspondingly.

Output
Print the maximum number of days the cat can eat in a trip without additional food purchases, if Polycarp chooses the day of the week to start his trip optimally.

Examples
input
2 1 1
output
4
input
3 2 2
output
7
input
1 100 1
output
3
input
30 20 10
output
39
Note
In the first example the best day for start of the trip is Sunday. In this case, during Sunday and Monday the cat will eat fish food, during Tuesday — rabbit stew and during Wednesday — chicken stake. So, after four days of the trip all food will be eaten.

In the second example Polycarp can start his trip in any day of the week. In any case there are food supplies only for one week in Polycarps backpack.

In the third example Polycarp can start his trip in any day, excluding Wednesday, Saturday and Sunday. In this case, the cat will eat three different dishes in three days. Nevertheless that after three days of a trip there will be 99 portions of rabbit stew in a backpack, can cannot eat anything in fourth day of a trip.


简单思维
可以发现,
a:1,4,7
b:2,6
c:3,5
先把完整的星期去掉,然后再枚举开始时间就好了

#include<bits/stdc++.h>
// #define SUBMIT
using namespace std;
typedef long long ll;
int main()
{
    #ifdef SUBMIT
    freopen("../in.txt", "r", stdin);
    freopen("../out.txt", "w", stdout);
    ll _begin_time = clock();
    #endif

    int a,b,c;
    while(cin>>a>>b>>c)
    {
           // cin>>a>>b>>c;
            int ans = 0;

            int minn = min(a/3,min(b/2,c/2));
            ans = minn*7;
            a -= minn*3;
            b -= minn*2;
            c -= minn*2;
            int p = 0;
            for(int i=1;i<=7;++i)
            {
                    int t = i;//枚举开始时间
                    int maxx = 0;//以星期i 开始,能吃的最多天数
                    int aa = a, bb=b, cc=c;
                    while(1)
                    {
                            if(t%7==1||t%7==4||t%7==0)  aa--;
                            if(t%7==2||t%7==6)          bb--;
                            if(t%7==3||t%7==5)          cc--;
                            t++;
                            maxx++;
                            if(aa<0||bb<0||cc<0)//如果下一天还能吃,那就继续循环,否则结束循环
                            {
                                    if(p<maxx)  p = maxx;
                                    break;
                            }
                    }
            }
            cout<<ans+p-1<<endl;
    }

    #ifdef SUBMIT
    ll _end_time = clock();
    printf("\ntime = %I64d ms", _end_time - _begin_time);
    #endif
    return 0;
}

### Codeforces Div.2 比赛难度介绍 Codeforces Div.2 比赛主要面向的是具有基础编程技能到中级水平的选手。这类比赛通常吸引了大量来自全球不同背景的参赛者,包括大学生、高中生以及一些专业人士。 #### 参加资格 为了参加 Div.2 比赛,选手的评级应不超过 2099 分[^1]。这意味着该级别的竞赛适合那些已经掌握了一定算法知识并能熟练运用至少一种编程语言的人群参与挑战。 #### 题目设置 每场 Div.2 比赛一般会提供五至七道题目,在某些特殊情况下可能会更多或更少。这些题目按照预计解决难度递增排列: - **简单题(A, B 类型)**: 主要测试基本的数据结构操作和常见算法的应用能力;例如数组处理、字符串匹配等。 - **中等偏难题(C, D 类型)**: 开始涉及较为复杂的逻辑推理能力和特定领域内的高级技巧;比如图论中的最短路径计算或是动态规划入门应用实例。 - **高难度题(E及以上类型)**: 对于这些问题,则更加侧重考察深入理解复杂概念的能力,并能够灵活组合多种方法来解决问题;这往往需要较强的创造力与丰富的实践经验支持。 对于新手来说,建议先专注于理解和练习前几类较容易的问题,随着经验积累和技术提升再逐步尝试更高层次的任务。 ```cpp // 示例代码展示如何判断一个数是否为偶数 #include <iostream> using namespace std; bool is_even(int num){ return num % 2 == 0; } int main(){ int number = 4; // 测试数据 if(is_even(number)){ cout << "The given number is even."; }else{ cout << "The given number is odd."; } } ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值