Codeforces Round 935 (Div. 3) A-E

在这里插入图片描述

A. Setting up Camp

题目描述

The organizing committee plans to take the participants of the Olympiad on a hike after the tour. Currently, the number of tents needed to be taken is being calculated. It is known that each tent can accommodate up to 3 3 3 people.

Among the participants, there are a a a introverts, b b b extroverts, and c c c universals:

  • Each introvert wants to live in a tent alone. Thus, a tent with an introvert must contain exactly one person — only the introvert himself.
  • Each extrovert wants to live in a tent with two others. Thus, the tent with an extrovert must contain exactly three people.
  • Each universal is fine with any option (living alone, with one other person, or with two others).

The organizing committee respects the wishes of each participant very much, so they want to fulfill all of them.

Tell us the minimum number of tents needed to be taken so that all participants can be accommodated according to their preferences. If it is impossible to accommodate the participants in a way that fulfills all the wishes, output − 1 -1 1.

Input

Each test consists of multiple test cases. The first line contains a single integer t t t ( 1 ≤ t ≤ 1 0 4 1 \le t \le 10^4 1t104) — the number of test cases. This is followed by the descriptions of the test cases.

Each test case is described by a single line containing three integers a a a, b b b, c c c ( 0 ≤ a , b , c ≤ 1 0 9 0 \le a, b, c \le 10^9 0a,b,c109) — the number of introverts, extroverts, and universals, respectively.

Output

For each test case, output a single integer — the minimum number of tents, or − 1 -1 1 if it is impossible to accommodate the participants.

Example

10
1 2 3
1 4 1
1 4 2
1 1 1
1 3 2
19 7 18
0 0 0
7 0 0
0 24 0
1000000000 1000000000 1000000000
3
-1
3
-1
3
28
0
7
8
1666666667

题目分析

这道题题目写起来很长,但是想描述的内容很简单,就是三种类型的人去住帐篷,帐篷最多容纳3人。内向的人想一个人住一个帐篷,外向的人想住在三个人的帐篷里,普通人怎么住都可以,也就是任由学校分配。学校想要满足每一个人的需求,至少需要多少个帐篷。

那我们的方案可以选择为:内向的人一人一个帐篷,外向的人和外向的人住在一起,如果最后外向的人不够住满3人的话,用普通人补齐3人,普通人都分配为3人一个帐篷,可能有帐篷没住满3人,不过普通人不受限制。

参考代码

for _ in range(int(input())):
    a, b, c = map(int, input().split())
    cnt = a + (b+3-1) // 3
    if b % 3 != 0:
        c -= (b//3 + 1) * 3 - b
    cnt += (c + 3 - 1)//3
    if c < 0: print(-1)
    else: print(cnt)

B. Fireworks

题目描述

One of the days of the hike coincided with a holiday, so in the evening at the camp, it was decided to arrange a festive fireworks display. For this purpose, the organizers of the hike bought two installations for launching fireworks and a huge number of shells for launching.

Both installations are turned on simultaneously. The first installation launches fireworks every a a a minutes (i.e., after a , 2 ⋅ a , 3 ⋅ a , … a, 2 \cdot a, 3 \cdot a, \dots a,2a,3a, minutes after launch). The second installation launches fireworks every b b b minutes (i.e., after b , 2 ⋅ b , 3 ⋅ b , … b, 2 \cdot b, 3 \cdot b, \dots b,2b,3b, minutes after launch).

Each firework is visible in the sky for m + 1 m + 1 m+1 minutes after launch, i.e., if a firework was launched after x x x minutes after the installations were turned on, it will be visible every minute from x x x to x + m x + m x+m, inclusive. If one firework was launched m m m minutes after another, both fireworks will be visible for one minute.

What is the maximum number of fireworks that could be seen in the sky at the same time?

Input

Each test consists of several test cases. The first line contains a single integer t t t ( 1 ≤ t ≤ 1 0 4 1 \le t \le 10^4 1t104) — the number of test cases. Then follow the descriptions of the test cases.

The first and only line of each test case contains integers a a a, b b b, m m m ( 1 ≤ a , b , m ≤ 1 0 18 1 \le a, b, m \le 10^{18} 1a,b,m1018) — the frequency of launching for the first installation, the second installation, and the time the firework is visible in the sky.

Output

For each set of input data, output a single number — the maximum number of fireworks that can be seen simultaneously.

Example

6
6 7 4
3 4 10
7 8 56
5 6 78123459896
1 1 1
1 1 1000000000000000000
2
7
17
28645268630
4
2000000000000000002

题目分析

有两个烟花发生装置,分别隔不同的时间发射烟花,烟花在空中的停留时间都是一样的。题目就是要求我们求出在某一时刻内能看到最多的烟花次数。两个数之间一定有公倍数,也就是两个装置存在一个时刻同时发射烟花,我们再求出在第一发烟花发射到熄灭之间又有多少烟花被发射,在第一个烟花熄灭的那个时刻,我们看到的烟花数最多。

参考代码

t = int(input())
for _ in range(t):
    a, b, m = map(int, input().split())
    ans = m//a + m//b + 2
    print(ans)

C. Left and Right Houses

题目描述

In the village of Letovo, there are n n n houses. The villagers decided to build a big road that will divide the village into left and right sides. Each resident wants to live on either the right or the left side of the street, which is described as a sequence a 1 , a 2 , … , a n a_1, a_2, \dots, a_n a1,a2,,an, where a j = 0 a_j = 0 aj=0 if the resident of the j j j-th house wants to live on the left side of the street; otherwise, a j = 1 a_j = 1 aj=1.

The road will pass between two houses. The houses to the left of it will be declared the left-side, and the houses to the right will be declared the right-side. More formally, let the road pass between houses i i i and i + 1 i+1 i+1. Then the houses at positions between 1 1 1 and i i i will be on the left side of the street, and at positions between i + 1 i+1 i+1 and n n n will be on the right side. The road also may pass before the first and after the last house; in this case, the entire village is declared to be either the right or left side, respectively.

To make the design fair, it was decided to lay the road so that at least half of the residents on each side of the village are satisfied with the choice. That is, among x x x residents on one side, at least ⌈ x 2 ⌉ \lceil\frac{x}{2}\rceil 2x should want to live on that side, where ⌈ x ⌉ \lceil x \rceil x denotes rounding up a real number x x x.

To the left of the road, there will be i i i houses, among the corresponding a j a_j aj there must be at least ⌈ i 2 ⌉ \lceil\frac{i}{2}\rceil 2i zeros. To the right of the road, there will be n − i n-i ni houses, among the corresponding a j a_j aj there must be at least ⌈ n − i 2 ⌉ \lceil\frac{n-i}{2}\rceil 2ni ones.

Determine after which house i i i the road should be laid in order to satisfy the described condition and be as close to the middle of the village as possible. Formally, among all suitable positions i i i, minimize ∣ n 2 − i ∣ \left|\frac{n}{2} - i\right| 2ni .

If there are multiple suitable positions i i i with the minimum ∣ n 2 − i ∣ \left|\frac{n}{2} - i\right| 2ni , output the smaller one.

Input

Each test contains multiple test cases. The first line contains the number of test cases t t t ( 1 ≤ t ≤ 2 ⋅ 1 0 4 1 \le t \le 2\cdot 10^4 1t2104). The description of the test cases follows.

The first line of each test case contains a single integer n n n ( 3 ≤ n ≤ 3 ⋅ 1 0 5 3 \le n \le 3\cdot 10^5 3n3105). The next line of each test case contains a string a a a of length n n n, consisting only of 0 0 0 and 1 1 1.

It is guaranteed that the sum of n n n over all test cases does not exceed 3 ⋅ 1 0 5 3\cdot 10^5 3105.

Output

For each test case, output a single number i i i — the position of the house after which the road should be laid (if it should be laid before the first house, output 0 0 0). We can show that the answer always exists.

Example

7
3
101
6
010111
6
011001
3
000
3
110
3
001
4
1100
2
3
2
3
0
1
0

题目分析

题目的意思就是选一条路划分出左右部分,需要满足条件:左半部分的 0 0 0要多于 1 1 1,右半部分的 1 1 1要多于 0 0 0

这道题可以用前缀和优化,如果一个区间的前缀和大于区间的元素数量 ÷ 2 \div2 ÷2,则 1 1 1多,反之则 0 0 0多。把满足条件的路都存到数组中,选最靠近 n / 2 n/2 n/2的路作为答案。

参考代码

for _ in range(int(input())):
    n = int(input())
    a=[int(x) for x in input()]    
    b = [0]
    for i in range(n):
        b.append(b[-1] + a[i])
    ans=[]
    for i in range(n+1):
        c=i-b[i]
        d=b[-1]-b[i]
        if c>=i/2 and d>=(n-i)/2:
            ans.append(i)
        
    ans.sort(key=lambda x: abs((n/2)-x))
    print(ans[0])

D. Seraphim the Owl

题目描述

The guys lined up in a queue of n n n people, starting with person number i = 1 i = 1 i=1, to ask Serafim the Owl about the meaning of life. Unfortunately, Kirill was very busy writing the legend for this problem, so he arrived a little later and stood at the end of the line after the n n n-th person. Kirill is completely dissatisfied with this situation, so he decided to bribe some people ahead of him.

For the i i i-th person in the queue, Kirill knows two values: a i a_i ai and b i b_i bi. If at the moment Kirill is standing at position i i i, then he can choose any position j j j such that KaTeX parse error: Expected 'EOF', got '&' at position 3: j &̲lt; i and exchange places with the person at position j j j. In this case, Kirill will have to pay him a j a_j aj coins. And for each k k k such that KaTeX parse error: Expected 'EOF', got '&' at position 3: j &̲lt; k &lt; i, Kirill will have to pay b k b_k bk coins to the person at position k k k. Kirill can perform this action any number of times.

Kirill is thrifty, so he wants to spend as few coins as possible, but he doesn’t want to wait too long, so Kirill believes he should be among the first m m m people in line.

Help Kirill determine the minimum number of coins he will have to spend in order to not wait too long.

Input

Each test consists of several sets of input data. The first line contains a single integer t t t ( 1 ≤ t ≤ 1 0 4 1 \le t \le 10^4 1t104) — the number of test cases. Then follows the description of the test case.

The first line of each test case contains two integers n n n and m m m ( 1 ≤ m ≤ n ≤ 200   000 1 \le m \le n \le 200\,000 1mn200000) — the number of people in the queue besides Kirill and the maximum allowable final position of Kirill, respectively.

The second line contains n n n integers a 1 , a 2 , … , a n a_1, a_2, \dots, a_n a1,a2,,an separated by spaces ( 1 ≤ a i ≤ 1 0 9 1 \le a_i \le 10^9 1ai109).

The third line contains n n n integers b 1 , b 2 , … , b n b_1, b_2, \dots, b_n b1,b2,,bn separated by spaces ( 1 ≤ b i ≤ 1 0 9 1 \le b_i \le 10^9 1bi109).

It is guaranteed that the sum of the values of n n n over all test cases does not exceed 2 ⋅ 1 0 5 2 \cdot 10^5 2105.

Output

For each test case, output a single integer — the minimum number of coins Kirill needs to spend.

Example

4
4 2
7 3 6 9
4 3 8 5
6 2
6 9 7 1 8 3
5 8 8 1 4 1
7 7
7 2 9 2 6 5 9
9 1 10 7 1 4 9
2 1
2 3
1 1
14
22
9
3

题目分析

Kirill想要排到别人的前面,所以要贿赂前面的所有人,当然贿赂的钱是不一样的。如果是直接换的那个人要支付 a i a_i ai,但是在他后面以及自己前面的这些人都要支付 b k b_k bk

其实就是在 a i a_i ai b i b_i bi之间取最小值,如果取的是 a i a_i ai表示直接换的,如果取的是 b i b_i bi相当于付一个同意费。自己最后到达的位置必须取 a i a_i ai,需要注意的是可能换到前面的位置比后面的位置花费更少。

参考代码

for _ in range(int(input())):
    n, m = map(int, input().split())
    a = list(map(int, input().split()))[::-1]
    b = list(map(int, input().split()))[::-1]
    prex = [0]
    for i in range(n):
        prex.append(prex[-1] + min(a[i], b[i]))
    mmin = prex[n-m] + a[n-m]
    for i in range(n-m+1, n+1):
        mmin = min(mmin, prex[i-1] + a[i-1])
    print(mmin)

E. Binary Search

题目描述

Anton got bored during the hike and wanted to solve something. He asked Kirill if he had any new problems, and of course, Kirill had one.

You are given a permutation p p p of size n n n, and a number x x x that needs to be found. A permutation of length n n n is an array consisting of n n n distinct integers from 1 1 1 to n n n in arbitrary order. For example, [ 2 , 3 , 1 , 5 , 4 ] [2,3,1,5,4] [2,3,1,5,4] is a permutation, but [ 1 , 2 , 2 ] [1,2,2] [1,2,2] is not a permutation ( 2 2 2 appears twice in the array), and [ 1 , 3 , 4 ] [1,3,4] [1,3,4] is also not a permutation ( n = 3 n=3 n=3 but there is 4 4 4 in the array).

You decided that you are a cool programmer, so you will use an advanced algorithm for the search — binary search. However, you forgot that for binary search, the array must be sorted.

You did not give up and decided to apply this algorithm anyway, and in order to get the correct answer, you can perform the following operation no more than 2 2 2 times before running the algorithm: choose the indices i i i, j j j ( 1 ≤ i , j ≤ n 1\le i, j \le n 1i,jn) and swap the elements at positions i i i and j j j.

After that, the binary search is performed. At the beginning of the algorithm, two variables l = 1 l = 1 l=1 and r = n + 1 r = n + 1 r=n+1 are declared. Then the following loop is executed:

  1. If r − l = 1 r - l = 1 rl=1, end the loop
  2. m = ⌊ r + l 2 ⌋ m = \lfloor \frac{r + l}{2} \rfloor m=2r+l
  3. If p m ≤ x p_m \le x pmx, assign l = m l = m l=m, otherwise r = m r = m r=m.

The goal is to rearrange the numbers in the permutation before the algorithm so that after the algorithm is executed, p l p_l pl is equal to x x x. It can be shown that 2 2 2 operations are always sufficient.

Input

Each test consists of multiple test cases. The first line contains a single integer t t t ( 1 ≤ t ≤ 2 ⋅ 1 0 4 1 \le t \le 2\cdot 10^4 1t2104) — the number of test cases. Then follow the descriptions of the test cases.

The first line of each test case contains two integers n n n and x x x ( 1 ≤ x ≤ n ≤ 2 ⋅ 1 0 5 1 \le x \le n \le 2\cdot 10^5 1xn2105) — the length of the permutation and the number to be found.

The second line contains the permutation p p p separated by spaces ( 1 ≤ p i ≤ n 1 \le p_i \le n 1pin).

It is guaranteed that the sum of the values of n n n for all test cases does not exceed 2 ⋅ 1 0 5 2\cdot 10^5 2105.

Output

For each test case, output an integer k k k ( 0 ≤ k ≤ 2 0 \le k \le 2 0k2) on the first line — the number of operations performed by you. In the next k k k lines, output 2 2 2 integers i i i, j j j ( 1 ≤ i , j ≤ n 1 \le i, j \le n 1i,jn) separated by a space, indicating that you are swapping the elements at positions i i i and j j j.

Note that you do not need to minimize the number of operations.

Example

5
6 3
1 2 3 4 5 6
6 5
3 1 6 5 2 4
5 1
3 5 4 2 1
6 3
4 3 1 5 2 6
3 2
3 2 1
0
1
3 4
2
2 4
1 5
2
4 5
2 4
1
1 3

题目分析

其实每次需要操作的数都可以只是 1 1 1

先对这组排列数使用二分法,返回出 l l l指针最后停留的位置。题目需要我们满足 p l = x p_l = x pl=x,也就是说我们把 l l l指针指向的元素和 x x x的元素换一下,那么 l l l指针指向的元素就一定是 x x x了。

参考代码

for _ in range(int(input())):
    n, x = map(int, input().split())
    p = [0] + list(map(int, input().split()))
    def bin_search(x):
        l, r = 1, n+1
        while l + 1 != r:
            m = (l + r) // 2
            if p[m] <= x: l = m
            else: r = m
        return l
 
    print(1)
    print(p.index(x), bin_search(x))
  • 9
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Keven1Duan

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值