若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1124: Problem E: A multiplication game

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,302

题目描述

Problem E: A multiplication game
Stan and Ollie play the game of multiplication by multiplying an integer p by one of the numbers 2 to 9. Stan always starts with p = 1, does his multiplication, then Ollie multiplies the number, then Stan and so on. Before a game starts, they draw an integer 1 < n < 4294967295 and the winner is who first reaches p >= n. Each line of input contains one integer number n. For each line of input output one line either

Stan wins.

or

Ollie wins.

assuming that both of them play perfectly.

输入

暂无

输出

暂无

样例输入

162
17
34012226

样例输出

Stan wins.
Ollie wins.
Stan wins.

参考代码

#include <stdio.h>
#include <assert.h>
int main () 
{
    unsigned int W, l ,h, n;
    while (scanf("%u",&n)==1) 
    {
        assert(1 < n && n < 4294967295U);
        W = 1;
        l = n/9;
        if (l*9<n) l++;
        h = n-1;
        while (1) 
        {
            if (l <= 1 && 1 <= h) 
            {
                printf(W?"Stan wins.n":"Ollie wins.n");
    break;
      }
      if (W) {
    if (l/2*2 < l) l = l/2+1; else l/=2;
    h/=9;
    W=0;
      } else {
    if (l/9*9 < l) l = l/9+1; else l/=9;
    h/=2;
    W=1;
      }
    }
  }
  return 0;
}

解析

暂无

hustoj

发表评论 取消回复

电子邮件地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

Skip 原站点 Dreams孤独患者
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist