• HDU6043 17多校1 KazaQ's Socks 水题


    题目传送:http://acm.hdu.edu.cn/showproblem.php?pid=6043

    Problem Description
    KazaQ wears socks everyday.

    At the beginning, he has n pairs of socks numbered from 1 to n in his closets. 

    Every morning, he puts on a pair of socks which has the smallest number in the closets. 

    Every evening, he puts this pair of socks in the basket. If there are n1 pairs of socks in the basket now, lazy KazaQ has to wash them. These socks will be put in the closets again in tomorrow evening.

    KazaQ would like to know which pair of socks he should wear on the k-th day.
     
    Input
    The input consists of multiple test cases. (about 2000)

    For each case, there is a line contains two numbers n,k (2n109,1k1018).
     
    Output
    For each test case, output "Case #xy" in one line (without quotes), where x indicates the case number starting from 1 and y denotes the answer of corresponding case.
     
    Sample Input
    3 7
    3 6
    4 9
     
    Sample Output
    Case #1: 3
    Case #2: 1
    Case #3: 2
     
    题意:这个人每天早上会从柜子拿一双序号最小的袜子,晚上扔进脏衣篓。 他会等到干净的袜子只剩一双的时候才去洗脏衣篓的袜子,给你袜子的总数n和第几天k,问你第k天穿的袜子序号为几。
    题解:可以通过分析n=3和n=4的情况来推断,打括号的说明是一起洗的。
              n=3:(1 2)( 3 1 )(2 1)( 3 1)( 2 1)( 3 1).....
              n=4:  (1 2 3) (4 1 2) (3 1 2) (4 1 2) (3 1 2) (4 1 2) (3 1 2)......
              除去第一个括号,每一个括号的开头都是仅剩的最后一双袜子,然后会从上一括号中洗好的再选(0~n-2)双,所以就有了这样的规律。
     
     1 #include<iostream>
     2 #include<cstdio>
     3 
     4 using namespace std;
     5 
     6 
     7 int main()
     8 {
     9     int t=1;
    10     long long n,k,res;
    11     while(~scanf("%lld%lld",&n,&k))
    12     {
    13         if(k<=n)
    14         {
    15             res=k;
    16         }
    17         else
    18         {
    19             k-=n;
    20             int q=k%(n-1);
    21             if(q==0)
    22                 if(k/(n-1)%2==0)
    23                     res=n;
    24                 else
    25                     res=n-1;
    26             else
    27                 res=q;
    28         }
    29         printf("Case #%d: %lld
    ",t++,res);
    30     }
    31     return 0;
    32 }
  • 相关阅读:
    combobox中动态加入几个checkbox,实现下拉框多选
    (摘至)程序员老鸟写sql语句的经验之谈
    c# 中的日期格式
    android小说阅读源码、bilibili源码、MVP新闻源码等
    android炫酷动画源码,QQ菜单、瀑布流、二维码源码
    视频弹幕源码、提取颜色源码、音乐播放器源码等
    饿了么点餐源码、今日头条源码 等
    分享 android 源码
    Android源码博文集锦4
    Android源码博文集锦3
  • 原文地址:https://www.cnblogs.com/Annetree/p/7238147.html
Copyright © 2020-2023  润新知