AtCoder 2333 Scc Puzzle (水题)

这是一篇关于AtCoder编程挑战中Scc Puzzle问题的解析,讲述了如何使用两个C形块组合成一个S形块,以创建尽可能多的Scc组合。题目给出输入输出格式,并提供了一个示例解释如何计算最大数量的Scc组。解决方案提到,先将S与C配对,然后计算剩余C的数量除以4加上剩余S的数量即为答案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目链接:http://abc055.contest.atcoder.jp/tasks/arc069_a?lang=en

C - Scc Puzzle


Time limit : 2sec / Memory limit : 256MB

Score : 300 points

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

  • 1N,M1012

Input

The input is given from Standard Input in the following format:

N M

Output

Print the answer.


Sample Input 1

Copy
1 6

Sample Output 1

Copy
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

Copy
12345 678901

Sample Output 2

Copy
175897

Submit



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

解析:先把S与C配对,剩下的C/4 + S的个数就是答案


代码:


#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
#include<map>
#include<cmath>
#define N 1009
using namespace std;
const int INF = 0x3f3f3f3f;
typedef long long LL;

LL fun(LL n, LL m)
{
    if((m / 2) < n) return  m / 2;
    LL ans = n;
    m = m - n * 2;
    ans = ans + m / 4;
    return ans;
}


int main()
{
    LL n, m;
    scanf("%lld%lld", &n, &m);
    LL ans = fun(n, m);
    printf("%lld\n", ans);
    return 0;
}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值