寄寄寄寄寄寄寄寄寄寄寄寄寄寄寄寄|

TLE_Automation

园龄:2年9个月粉丝:19关注:23

P8344 「Wdoi-6」走在夜晚的莲台野 题解

简单结论题。

题意:

有一个能装 z 个木板的桶,你有 x 个金色木板, y 个银色木板,每放进一个金色木板,下面的银色木板都会拿出来了,问是否存在方案使所有的木板都被放进去过

思路:

最后的情况肯定是把所有的金色木板放到桶里,如果 z<x,肯定无解。

然后我们贪心的考虑最多能放进去过几个银色木板,想让更多的银色木板被放进去过,那就是最后留下一个空位来放金色木板将下面的不断拿出来,容易发现这是一个等差数列,用求和公式求出最多的能放的银色木板数,与 y 做对比即可。

AC code:

/*
Work by: TLE_Automation
*/
#include<cmath>
#include<queue>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define LL long long
#define int long long
using namespace std;
const int N = 1e6 + 10;
const int MAXN = 2e5 + 10;
inline char readchar() {
static char buf[100000], *p1 = buf, *p2 = buf;
return p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++;
}
inline int read() {
#define readchar getchar
int res = 0, f = 0;char ch = readchar();
for(; !isdigit(ch); ch = readchar()) if(ch == '-') f = 1;
for(; isdigit(ch); ch = readchar()) res = (res << 1) + (res << 3) + (ch ^ '0');
return f ? -res : res;
}
inline void print(int x) {
if (x < 0 ) putchar('-'), x = -x;
if (x > 9 ) print(x / 10);
putchar(x % 10 + '0');
}
void Main() {
int x = read(), y = read(), z = read();
// printf("%lld\n", ((z - 1 + z - x - 1) * ( x + 1) / 2));
if(x > z) return puts("Merry"), void();
if((z - 1 + z - x - 1) * ( x + 1) / 2 + 1 < y) return puts("Merry"), void();
else return puts("Renko"), void();
}
signed main() {
int T = read(); while(T--) Main();
return 0;
}

本文作者:TLE_Automation

本文链接:https://www.cnblogs.com/tttttttle/p/16293580.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   TLE_Automation  阅读(53)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起