博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【BZOJ】1666: [Usaco2006 Oct]Another Cow Number Game 奶牛的数字游戏(刷水严重)
阅读量:6086 次
发布时间:2019-06-20

本文共 1408 字,大约阅读时间需要 4 分钟。

这种我就不说了。。

#include 
#include
#include
#include
#include
#include
using namespace std;#define rep(i, n) for(int i=0; i<(n); ++i)#define for1(i,a,n) for(int i=(a);i<=(n);++i)#define for2(i,a,n) for(int i=(a);i<(n);++i)#define for3(i,a,n) for(int i=(a);i>=(n);--i)#define for4(i,a,n) for(int i=(a);i>(n);--i)#define CC(i,a) memset(i,a,sizeof(i))#define read(a) a=getint()#define print(a) printf("%d", a)#define dbg(x) cout << #x << " = " << x << endl#define printarr(a, n, m) rep(aaa, n) { rep(bbb, m) cout << a[aaa][bbb]; cout << endl; }inline const int getint() { int r=0, k=1; char c=getchar(); for(; c<'0'||c>'9'; c=getchar()) if(c=='-') k=-1; for(; c>='0'&&c<='9'; c=getchar()) r=r*10+c-'0'; return k*r; }inline const int max(const int &a, const int &b) { return a>b?a:b; }inline const int min(const int &a, const int &b) { return a
>=1; ++ans; } print(ans); return 0;}

 

 


 

 

Description

奶 牛们又在玩一种无聊的数字游戏。输得很郁闷的贝茜想请你写个程序来帮她在开局时预测结果。在游戏的开始,每头牛都会得到一个数N(1<=N& lt;=1,000,000)。此时奶牛们的分数均为0。如果N是奇数,那么奶牛就会把它乘以3后再加1。如果N是偶数,那么这个数就会被除以2。数字每 变动一次,这头奶牛就得到1分。当N的值等于1时,游戏结束,此时的分数就是这头奶牛在这局游戏中的最终得分。 以下是N的初始值为5时,一局游戏的完整过程: N 操作后所得数 注释 总分 5 16 3*5+1 1 16 8 16/2 2 8 4 8/2 3 4 2 4/2 4 2 1 2/2 5 这头奶牛的最终得分是5。

Input

* 第1行: 一个正整数,N

Output

* 第1行: 输出一个正整数N,即奶牛在这局游戏中的最终得分

Sample Input

112

Sample Output

20

HINT

Source

转载地址:http://rtpwa.baihongyu.com/

你可能感兴趣的文章
【Kafka】《Kafka权威指南》入门
查看>>
存储过程中有个DEFINER
查看>>
Linux下用Sendmail搭建简单邮件服务器
查看>>
display:list-item,不需要有ul,ol,li等列表标签也能排布列表格局
查看>>
ztr loves lucky numbers(STL)
查看>>
Microsoft Azure Remoteapp预览
查看>>
前端开发者指南(2017)
查看>>
十步搭建Open×××,享受你的隐私生活
查看>>
virtulbox安装win10 64bit不能正常设置分辨率1366*768的解决方案
查看>>
安装Linux的硬件环境
查看>>
我的友情链接
查看>>
◎Vbs脚本编程简明教程之十一 ——FSO中文件的基本操作
查看>>
Python 学习入门(18)—— 字符串
查看>>
备份概述 (SQL Server)
查看>>
做母亲不容易
查看>>
Java学习笔记(26)——Java内部类(二)
查看>>
贴一份代码,演示java.lang.Iterable
查看>>
有关于postgresql的pg_dump导出命令
查看>>
最近在学习react-native 为之后的找工作做准备
查看>>
kangle配置文件
查看>>