• Codeforces Round #370 (Div. 2) A B C 水 模拟 贪心


    A. Memory and Crow
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    There are n integers b1, b2, ..., bn written in a row. For all i from 1 to n, values ai are defined by the crows performing the following procedure:

    • The crow sets ai initially 0.
    • The crow then adds bi to ai, subtracts bi + 1, adds the bi + 2 number, and so on until the n'th number. Thus,ai = bi - bi + 1 + bi + 2 - bi + 3....

    Memory gives you the values a1, a2, ..., an, and he now wants you to find the initial numbers b1, b2, ..., bn written in the row? Can you do it?

    Input

    The first line of the input contains a single integer n (2 ≤ n ≤ 100 000) — the number of integers written in the row.

    The next line contains n, the i'th of which is ai ( - 109 ≤ ai ≤ 109) — the value of the i'th number.

    Output

    Print n integers corresponding to the sequence b1, b2, ..., bn. It's guaranteed that the answer is unique and fits in 32-bit integer type.

    Examples
    input
    5
    6 -4 8 -2 3
    output
    2 4 6 1 3 
    input
    5
    3 -2 -1 5 6
    output
    1 -3 4 11 6 
    Note

    In the first sample test, the crows report the numbers 6, - 4, 8, - 2, and 3 when he starts at indices 1, 2, 3, 4 and 5 respectively. It is easy to check that the sequence 3 satisfies the reports. For example, 6 = 2 - 4 + 6 - 1 + 3, and  - 4 = 4 - 6 + 1 - 3.

    In the second sample test, the sequence 1,  - 3, 4, 11, 6 satisfies the reports. For example, 5 = 11 - 6 and 6 = 6.

     题意:a,b序列满足ai = bi - b(i + 1) + b(i + 2) - b(i + 3)....

    给你a序列 输出b序列

     题解:观察样咧很容易得出b[i]=a[i]+a[i+1];

     1 /******************************
     2 code by drizzle
     3 blog: www.cnblogs.com/hsd-/
     4 ^ ^    ^ ^
     5  O      O
     6 ******************************/
     7 #include<bits/stdc++.h>
     8 #include<iostream>
     9 #include<cstring>
    10 #include<cstdio>
    11 #include<map>
    12 #include<algorithm>
    13 #include<queue>
    14 #define ll __int64
    15 using namespace std;
    16 int  n;
    17 ll a[100005];
    18 ll b[100005];
    19 int main()
    20 {
    21     scanf("%d",&n);
    22     for(int i=1;i<=n;i++)
    23         scanf("%I64d",&a[i]);
    24     b[n]=a[n];
    25     for(int i=n-1;i>=1;i--)
    26         b[i]=a[i]+a[i+1];
    27     cout<<b[1];
    28     for(int i=2;i<=n;i++)
    29         cout<<" "<<b[i];
    30     cout<<endl;
    31     return 0;
    32 }
     
    B. Memory and Trident
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Memory is performing a walk on the two-dimensional plane, starting at the origin. He is given a string s with his directions for motion:

    • An 'L' indicates he should move one unit left.
    • An 'R' indicates he should move one unit right.
    • A 'U' indicates he should move one unit up.
    • A 'D' indicates he should move one unit down.

    But now Memory wants to end at the origin. To do this, he has a special trident. This trident can replace any character in s with any of 'L', 'R', 'U', or 'D'. However, because he doesn't want to wear out the trident, he wants to make the minimum number of edits possible. Please tell Memory what is the minimum number of changes he needs to make to produce a string that, when walked, will end at the origin, or if there is no such string.

    Input

    The first and only line contains the string s (1 ≤ |s| ≤ 100 000) — the instructions Memory is given.

    Output

    If there is a string satisfying the conditions, output a single integer — the minimum number of edits required. In case it's not possible to change the sequence in such a way that it will bring Memory to to the origin, output -1.

    Examples
    input
    RRU
    output
    -1
    input
    UDUR
    output
    1
    input
    RUUR
    output
    2
    Note

    In the first sample test, Memory is told to walk right, then right, then up. It is easy to see that it is impossible to edit these instructions to form a valid walk.

    In the second sample test, Memory is told to walk up, then down, then up, then right. One possible solution is to change s to "LDUR". This string uses 1 edit, which is the minimum possible. It also ends at the origin.

    题意:给你一个串4个方向用4个字母表示 形成路径 要求要从起点最终回到起点 问你最少需要更改多少字母(某次的方向)

    使得满足条件 回到起点。

    题解:对于当前路径 判断起点与终点间的曼哈顿距离为dis

    dis%2!=0则无论怎么更改都不能回到起点  (每更改一次方向都会使得距离变化2)

     1 /******************************
     2 code by drizzle
     3 blog: www.cnblogs.com/hsd-/
     4 ^ ^    ^ ^
     5  O      O
     6 ******************************/
     7 #include<bits/stdc++.h>
     8 #include<iostream>
     9 #include<cstring>
    10 #include<cstdio>
    11 #include<map>
    12 #include<algorithm>
    13 #include<queue>
    14 #define ll __int64
    15 using namespace std;
    16 char s[100005];
    17 int main()
    18 {
    19     cin>>s;
    20     int len=strlen(s);
    21     int xx=0,yy=0;
    22     for(int i=0; i<len; i++)
    23     {
    24         if(s[i]=='L')
    25             xx--;
    26         if(s[i]=='R')
    27             xx++;
    28         if(s[i]=='U')
    29             yy++;
    30         if(s[i]=='D')
    31             yy--;
    32     }
    33     if((abs(xx)+abs(yy))%2)
    34         cout<<"-1"<<endl;
    35     else
    36         cout<<(abs(xx)+abs(yy))/2<<endl;
    37     return 0;
    38 }
    C. Memory and De-Evolution
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Memory is now interested in the de-evolution of objects, specifically triangles. He starts with an equilateral triangle of side length x, and he wishes to perform operations to obtain an equilateral triangle of side length y.

    In a single second, he can modify the length of a single side of the current triangle such that it remains a non-degenerate triangle (triangle of positive area). At any moment of time, the length of each side should be integer.

    What is the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y?

    Input

    The first and only line contains two integers x and y (3 ≤ y < x ≤ 100 000) — the starting and ending equilateral triangle side lengths respectively.

    Output

    Print a single integer — the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y if he starts with the equilateral triangle of side length x.

    Examples
    input
    6 3
    output
    4
    input
    8 5
    output
    3
    input
    22 4
    output
    6
    Note

    In the first sample test, Memory starts with an equilateral triangle of side length 6 and wants one of side length 3. Denote a triangle with sides ab, and c as (a, b, c). Then, Memory can do .

    In the second sample test, Memory can do .

    In the third sample test, Memory can do: 

    .

     题意:给你x,y分别为初始等边三角形的边长和目标等边三角形的边长(x>y) 每次只能变化一条边,并且中间三角形为非退化三角形也就是必须是合法的三角形

    问你最少的变化次数

     题解:逆向思维 由y变到x 贪心使得 某条边增量尽可能大 并且能行成三角形 统计次数

     1 /******************************
     2 code by drizzle
     3 blog: www.cnblogs.com/hsd-/
     4 ^ ^    ^ ^
     5  O      O
     6 ******************************/
     7 #include<bits/stdc++.h>
     8 #include<iostream>
     9 #include<cstring>
    10 #include<cstdio>
    11 #include<map>
    12 #include<algorithm>
    13 #include<queue>
    14 #define ll __int64
    15 using namespace std;
    16 int x,y;
    17 int a[4];
    18 int main()
    19 {
    20     scanf("%d %d",&x,&y);
    21     a[0]=y;a[1]=y;a[2]=y;
    22     int ans=0;
    23     while(a[0]!=x||a[1]!=x||a[2]!=x)
    24     {
    25         sort(a,a+3);
    26         if(a[1]+a[2]-1>=x)
    27             a[0]=x;
    28         else
    29             a[0]=a[1]+a[2]-1;
    30         ans++;
    31     }
    32     cout<<ans<<endl;
    33     return 0;
    34 }
  • 相关阅读:
    vs2013如何在C++中调用Lua(二)
    用vs2013编译lua源码方法(一)
    使用Sublime Text 直接运行Quick-cocos2d-x 项目
    SubmitText 中配置lua 运行环境
    在VS2012/2013上编辑和调试Quick-cocos2d-x的Lua代码
    Cocos2d-x 开发 v3.2 建立新项目并添加库文件
    计算一段函数的执行效率
    C++中嵌入Lua脚本环境搭建
    Android开发环境配置
    cocos2d-x-3.1.1 创建项目
  • 原文地址:https://www.cnblogs.com/hsd-/p/5863265.html
Copyright © 2020-2023  润新知