zoukankan      html  css  js  c++  java
  • Codeforces 715A & 716C Plus and Square Root【数学规律】 (Codeforces Round #372 (Div. 2))

    C. Plus and Square Root
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    ZS the Coder is playing a game. There is a number displayed on the screen and there are two buttons, ' + ' (plus) and '' (square root). Initially, the number 2 is displayed on the screen. There are n + 1 levels in the game and ZS the Coder start at the level 1.

    When ZS the Coder is at level k, he can :

    1. Press the ' + ' button. This increases the number on the screen by exactly k. So, if the number on the screen was x, it becomesx + k.
    2. Press the '' button. Let the number on the screen be x. After pressing this button, the number becomes . After that, ZS the Coder levels up, so his current level becomes k + 1. This button can only be pressed when x is a perfect square, i.e. x = m2 for some positive integer m.

    Additionally, after each move, if ZS the Coder is at level k, and the number on the screen is m, then m must be a multiple of k. Note that this condition is only checked after performing the press. For example, if ZS the Coder is at level 4 and current number is 100, he presses the '' button and the number turns into 10. Note that at this moment, 10 is not divisible by 4, but this press is still valid, because after it, ZS the Coder is at level 5, and 10 is divisible by 5.

    ZS the Coder needs your help in beating the game — he wants to reach level n + 1. In other words, he needs to press the '' button ntimes. Help him determine the number of times he should press the ' + ' button before pressing the '' button at each level.

    Please note that ZS the Coder wants to find just any sequence of presses allowing him to reach level n + 1, but not necessarily a sequence minimizing the number of presses.

    Input

    The first and only line of the input contains a single integer n (1 ≤ n ≤ 100 000), denoting that ZS the Coder wants to reach level n + 1.

    Output

    Print n non-negative integers, one per line. i-th of them should be equal to the number of times that ZS the Coder needs to press the ' + ' button before pressing the '' button at level i.

    Each number in the output should not exceed 1018. However, the number on the screen can be greater than 1018.

    It is guaranteed that at least one solution exists. If there are multiple solutions, print any of them.

    Examples
    input
    3
    output
    14
    16
    46
    input
    2
    output
    999999999999999998
    44500000000
    input
    4
    output
    2
    17
    46
    97
    Note

    In the first sample case:

    On the first level, ZS the Coder pressed the ' + ' button 14 times (and the number on screen is initially 2), so the number became2 + 14·1 = 16. Then, ZS the Coder pressed the '' button, and the number became .

    After that, on the second level, ZS pressed the ' + ' button 16 times, so the number becomes 4 + 16·2 = 36. Then, ZS pressed the '' button, levelling up and changing the number into .

    After that, on the third level, ZS pressed the ' + ' button 46 times, so the number becomes 6 + 46·3 = 144. Then, ZS pressed the '' button, levelling up and changing the number into .

    Note that 12 is indeed divisible by 4, so ZS the Coder can reach level 4.

    Also, note that pressing the ' + ' button 10 times on the third level before levelling up does not work, because the number becomes6 + 10·3 = 36, and when the '' button is pressed, the number becomes  and ZS the Coder is at Level 4. However, 6 is not divisible by 4 now, so this is not a valid solution.

    In the second sample case:

    On the first level, ZS the Coder pressed the ' + ' button 999999999999999998 times (and the number on screen is initially 2), so the number became 2 + 999999999999999998·1 = 1018. Then, ZS the Coder pressed the '' button, and the number became .

    After that, on the second level, ZS pressed the ' + ' button 44500000000 times, so the number becomes109 + 44500000000·2 = 9·1010. Then, ZS pressed the '' button, levelling up and changing the number into .

    Note that 300000 is a multiple of 3, so ZS the Coder can reach level 3.

    题目链接:

      http://codeforces.com/contest/715/problem/A 

      http://codeforces.com/contest/716/problem/C

    题目大意:

      一开始你有数2,处于level1,你可以选择+或者开方,选择加那么现在的数字将加上当前的level,

      选择开方当且仅当你拥有的数十完全平方数,并且开方后level会加1,还要满足开方后所剩的数字是新的level的整数倍。

      问从level1到level n+1 每一次需要+的次数【任意解即可】

    题目思路:

      【数学规律】

      如果当前level=1,那么需要两次+,把数字变为4,开方后为2,还是2的倍数。

      当level i(i>1)时,通过找规律可以知道,到达level i+1 需要的+的次数为i*(i+1)*(i+1)-(i-1)。

     1 //
     2 //by coolxxx
     3 //#include<bits/stdc++.h>
     4 #include<iostream>
     5 #include<algorithm>
     6 #include<string>
     7 #include<iomanip>
     8 #include<map>
     9 #include<stack>
    10 #include<queue>
    11 #include<set>
    12 #include<bitset>
    13 #include<memory.h>
    14 #include<time.h>
    15 #include<stdio.h>
    16 #include<stdlib.h>
    17 #include<string.h>
    18 //#include<stdbool.h>
    19 #include<math.h>
    20 #define min(a,b) ((a)<(b)?(a):(b))
    21 #define max(a,b) ((a)>(b)?(a):(b))
    22 #define abs(a) ((a)>0?(a):(-(a)))
    23 #define lowbit(a) (a&(-a))
    24 #define sqr(a) ((a)*(a))
    25 #define swap(a,b) ((a)^=(b),(b)^=(a),(a)^=(b))
    26 #define mem(a,b) memset(a,b,sizeof(a))
    27 #define eps (1e-10)
    28 #define J 10000
    29 #define mod 1000000007
    30 #define MAX 0x7f7f7f7f
    31 #define PI 3.14159265358979323
    32 #pragma comment(linker,"/STACK:1024000000,1024000000")
    33 #define N 50004
    34 using namespace std;
    35 typedef long long LL;
    36 double anss;
    37 LL aans;
    38 int cas,cass;
    39 LL n,m,lll,ans;
    40 int main()
    41 {
    42     #ifndef ONLINE_JUDGEW
    43 //    freopen("1.txt","r",stdin);
    44 //    freopen("2.txt","w",stdout);
    45     #endif
    46     LL i,j,k;
    47 //    init();
    48 //    for(scanf("%d",&cass);cass;cass--)
    49 //    for(scanf("%d",&cas),cass=1;cass<=cas;cass++)
    50 //    while(~scanf("%s",s))
    51     while(~scanf("%I64d",&n))
    52     {
    53         for(i=1;i<=n;i++)
    54         {
    55             if(i==1)puts("2");
    56             else printf("%I64d
    ",sqr(i+1)*i-(i-1));
    57         }
    58     }
    59     return 0;
    60 }
    61 /*
    62 //
    63 
    64 //
    65 */
    View Code
  • 相关阅读:
    @ControllerAdvice 全局异常处理
    SpringBoot 单文件和多文件上传
    Springboot application 本地HTTPS配置
    不使用spring-boot-starter-parent进行依赖的版本管理
    构造函数和函数式接口
    函数式接口和Lambda表达式
    使用FunctionalInterface提供工厂方法
    Future 和 CompletableFuture 异步任务 in Java
    单例
    使用私有仓库(Docker Registry 2.0)管理镜像
  • 原文地址:https://www.cnblogs.com/Coolxxx/p/5880158.html
Copyright © 2011-2022 走看看