Scc Puzzle(水题)

题目链接:https://vjudge.net/contest/276429#problem/A

Problem Statement

Snuke loves puzzles.

Today, he is working on a puzzle using S- and c-shaped pieces. In this puzzle, you can combine two c-shaped pieces into one S-shaped piece, as shown in the figure below:

9b0bd546db9f28b4093d417b8f274124.png
Snuke decided to create as many Scc groups as possible by putting together one S-shaped piece and two c-shaped pieces.

Find the maximum number of Scc groups that can be created when Snuke has N S-shaped pieces and M c-shaped pieces.

Constraints
1≤N,M≤1012
Input
The input is given from Standard Input in the following format:

N M
Output
Print the answer.
Sample Input 1
1 6
Sample Output 1
2
Two Scc groups can be created as follows:

Combine two c-shaped pieces into one S-shaped piece
Create two Scc groups, each from one S-shaped piece and two c-shaped pieces
Sample Input 2
12345 678901
Sample Output 2
175897

题意:输入n个S, m个C,一个S可以由2个C组成,求一共有多少个Scc

解析:先把S与C配对,剩下的C/4 + S的个数就是答案,需要注意的点是当c的个数小于s的个数时,S与C不能完全配对,因此最大组数为c的个数除以2

#include<cstdio>
#include<iostream>

using namespace std;

int main()
{
    long long n,m;
    while(~scanf("%lld%lld",&n,&m))   //多组输入
    {
        cout << ((m/2<n)? m/2 : n+(m-n*2)/4) << endl;  //三目运算符
    }
    return 0;
}

Thank for you like!

全部评论

相关推荐

昨天 11:27
门头沟学院 Java
点赞 评论 收藏
分享
绝迹的星:前端和后端写两份简历, 如果想干全栈就直接写求职意向为全栈工程师
点赞 评论 收藏
分享
05-30 12:03
山西大学 C++
offer来了我跪着...:不是骗子,等到测评那一步就知道为啥这么高工资了
点赞 评论 收藏
分享
06-28 22:48
已编辑
广东金融学院 Java
小浪_Coding:学院本+这俩项目不是buff叠满了嘛
点赞 评论 收藏
分享
仁者伍敌:实习生要工作经验,工作要实习经验
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务