百练2505:A multiplication game
Posted 逢山开路 遇水架桥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百练2505:A multiplication game相关的知识,希望对你有一定的参考价值。
传送门:http://bailian.openjudge.cn/practice/2505/
【题解】
我们找找规律:
1~9显然是Stan wins.
10~18是Ollie wins.
19~162是Stan wins...
发现分界线是18^?
判判就行了。
# include <stdio.h> # include <string.h> # include <iostream> # include <algorithm> // # include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; const int M = 5e5 + 10; const int mod = 1e9+7; # define RG register # define ST static double n; int main() { while (cin >> n) { while(n > 18) n /= 18; if(n <= 9) puts("Stan wins."); else puts("Ollie wins."); } return 0; }
以上是关于百练2505:A multiplication game的主要内容,如果未能解决你的问题,请参考以下文章
POJ 2505 A multiplication game
POJ2505 A multiplication game[博弈论]
poj 2505 A multiplication game
POJ 2505 A multiplication game(找规律博弈/贪心)