Codeforces Round #395 (Div. 2)(A.思维,B,水)

简介: A. Taymyr is calling you time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard o...

A. Taymyr is calling you

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist.

Ilia-alpinist calls every n minutes, i.e. in minutes n, 2n, 3n and so on. Artists come to the comrade every m minutes, i.e. in minutes m, 2m, 3m and so on. The day is z minutes long, i.e. the day consists of minutes 1, 2, ..., z. How many artists should be killed so that there are no artists in the room when Ilia calls? Consider that a call and a talk with an artist take exactly one minute.

Input

The only string contains three integers — n, m and z (1 ≤ n, m, z ≤ 104).

Output

Print single integer — the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.

Examples
Input
1 1 10
Output
10
Input
1 2 5
Output
2
Input
2 3 9
Output
1
Note

Taymyr is a place in the north of Russia.

In the first test the artists come each minute, as well as the calls, so we need to kill all of them.

In the second test we need to kill artists which come on the second and the fourth minutes.

In the third test — only the artist which comes on the sixth minute.

题目链接:http://codeforces.com/contest/764/problem/A

分析:此题竟然是求n与m的最小公倍数,我TM是智障了!试了三次,开始以为就是t/(m×n),智障宝宝!

不说太多,都是泪啊!

下面给出AC代码:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int gcd(int a,int b)
 4 {
 5     return b==0?a:gcd(b,a%b);
 6 }
 7 int main()
 8 {
 9     int n,m,t;
10     while(cin>>n>>m>>t)
11     {
12         int x=gcd(n,m);
13         int y=n*m/x;
14         int z=t/y;
15         cout<<z<<endl;
16     }
17     return 0;
18 }

B. Timofey and cubes

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

Young Timofey has a birthday today! He got kit of n cubes as a birthday present from his parents. Every cube has a number ai, which is written on it. Timofey put all the cubes in a row and went to unpack other presents.

In this time, Timofey's elder brother, Dima reordered the cubes using the following rule. Suppose the cubes are numbered from 1 to n in their order. Dima performs several steps, on step i he reverses the segment of cubes from i-th to (n - i + 1)-th. He does this while i ≤ n - i + 1.

After performing the operations Dima went away, being very proud of himself. When Timofey returned to his cubes, he understood that their order was changed. Help Timofey as fast as you can and save the holiday — restore the initial order of the cubes using information of their current location.

Input

The first line contains single integer n (1 ≤ n ≤ 2·105) — the number of cubes.

The second line contains n integers a1, a2, ..., an ( - 109 ≤ ai ≤ 109), where ai is the number written on the i-th cube after Dima has changed their order.

Output

Print n integers, separated by spaces — the numbers written on the cubes in their initial order.

It can be shown that the answer is unique.

Examples
Input
7 
4 3 7 6 9 1 2
Output
2 3 9 6 7 1 4
Input
8 
6 1 4 2 5 6 9 2
Output
2 1 6 2 5 4 9 6
Note

Consider the first sample.

  1. At the begining row was [2, 3, 9, 6, 7, 1, 4].
  2. After first operation row was [4, 1, 7, 6, 9, 3, 2].
  3. After second operation row was [4, 3, 9, 6, 7, 1, 2].
  4. After third operation row was [4, 3, 7, 6, 9, 1, 2].
  5. At fourth operation we reverse just middle element, so nothing has changed. The final row is [4, 3, 7, 6, 9, 1, 2]. So the answer for this case is row [2, 3, 9, 6, 7, 1, 4].

 

               
       

题目链接:http://codeforces.com/contest/764/problem/B

分析:智障宝宝继续犯傻,看了半天,以为规律就是奇偶变换,结果样例都没过,再回头看了下题,傻了眼,原来就是每两项第i项和第n-i+1项交换!

智障宝宝第二摔!

下面给出AC代码:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int a[200005];
 4 int main()
 5 {
 6     int n;
 7     while(cin>>n)
 8     {
 9         for(int i=1;i<=n;i++)
10             cin>>a[i];
11             for(int i=1;i<=(n+1)/2;i+=2)
12             {
13                 swap(a[i],a[n-i+1]);
14             }
15         for(int i=1;i<=n-1;i++)
16             cout<<a[i]<<" ";
17         cout<<a[n]<<endl;
18     }
19     return 0;
20 }

 

          

目录
相关文章
|
12月前
【CodeForces】Codeforces Round 857 (Div. 2) B
【CodeForces】Codeforces Round 857 (Div. 2) B
86 0
|
12月前
|
人工智能
|
机器学习/深度学习 Java
Codeforces Round #748 (Div. 3) D2. Half of Same(数学 枚举 思维)
Codeforces Round #748 (Div. 3) D2. Half of Same(数学 枚举 思维)
82 0
|
机器学习/深度学习 人工智能 算法
每日一题冲刺大厂第十六天提高组 codeforces 783 div1 Half Queen
大家好,我是泡泡,给大家带来每日一题的目的是为了更好的练习算法,我们的每日一题提高组是为了有余力的同学准备的,让大家练到各种各样的题目,一年以后,蜕变成为一个不一样的自己!
89 0
每日一题冲刺大厂第十六天提高组 codeforces 783 div1 Half Queen
2021年暑假康复性训练(Codeforces Round #731 (Div. 4))全题解(下)
D. Co-growing Sequence input: output: code: E. Air Conditioners input: output: F. Array Stabilization (GCD version) input: output: code: G. How Many Paths? input: output: ac_code:
90 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 4))全题解(下)
2021年暑假康复性训练(Codeforces Round #731 (Div. 3))全题解(上)
2021暑假康复性训练 Codeforces Round #731 (Div. 3) A Shortest Path with Obstacle B. Alphabetical Strings C. Pair Programming D. Co-growing Sequence E. Air Conditioners F. Array Stabilization (GCD version) G. How Many Paths?
100 0
2021年暑假康复性训练(Codeforces Round #731 (Div. 3))全题解(上)