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\) people.

Among the participants, there are \(a\) introverts, \(b\) extroverts, and \(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\).

Input

Each test consists of multiple test cases. The first line contains a single integer \(t\) (\(1 \le t \le 10^4\)) — 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\), \(b\), \(c\) (\(0 \le a, b, c \le 10^9\)) — the number of introverts, extroverts, and universals, respectively.

Output

For each test case, output a single integer — the minimum number of tents, or \(-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\) minutes (i.e., after \(a, 2 \cdot a, 3 \cdot a, \dots\) minutes after launch). The second installation launches fireworks every \(b\) minutes (i.e., after \(b, 2 \cdot b, 3 \cdot b, \dots\) minutes after launch).

Each firework is visible in the sky for \(m + 1\) minutes after launch, i.e., if a firework was launched after \(x\) minutes after the installations were turned on, it will be visible every minute from \(x\) to \(x + m\), inclusive. If one firework was launched \(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\) (\(1 \le t \le 10^4\)) — 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\), \(b\), \(m\) (\(1 \le a, b, m \le 10^{18}\)) — 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\) 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, \dots, a_n\), where \(a_j = 0\) if the resident of the \(j\)-th house wants to live on the left side of the street; otherwise, \(a_j = 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\) and \(i+1\). Then the houses at positions between \(1\) and \(i\) will be on the left side of the street, and at positions between \(i+1\) and \(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\) residents on one side, at least \(\lceil\frac{x}{2}\rceil\) should want to live on that side, where \(\lceil x \rceil\) denotes rounding up a real number \(x\).

To the left of the road, there will be \(i\) houses, among the corresponding \(a_j\) there must be at least \(\lceil\frac{i}{2}\rceil\) zeros. To the right of the road, there will be \(n-i\) houses, among the corresponding \(a_j\) there must be at least \(\lceil\frac{n-i}{2}\rceil\) ones.

Determine after which house \(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\), minimize \(\left|\frac{n}{2} - i\right|\).

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

Input

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

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

It is guaranteed that the sum of \(n\) over all test cases does not exceed \(3\cdot 10^5\).

Output

For each test case, output a single number \(i\) — the position of the house after which the road should be laid (if it should be laid before the first house, output \(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\)要多于\(1\),右半部分的\(1\)要多于\(0\)。

这道题可以用前缀和优化,如果一个区间的前缀和大于区间的元素数量\(\div2\),则\(1\)多,反之则\(0\)多。把满足条件的路都存到数组中,选最靠近\(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\) people, starting with person number \(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\)-th person. Kirill is completely dissatisfied with this situation, so he decided to bribe some people ahead of him.

For the \(i\)-th person in the queue, Kirill knows two values: \(a_i\) and \(b_i\). If at the moment Kirill is standing at position \(i\), then he can choose any position \(j\) such that \(j &lt; i\) and exchange places with the person at position \(j\). In this case, Kirill will have to pay him \(a_j\) coins. And for each \(k\) such that \(j &lt; k &lt; i\), Kirill will have to pay \(b_k\) coins to the person at position \(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\) 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\) (\(1 \le t \le 10^4\)) — the number of test cases. Then follows the description of the test case.

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

The second line contains \(n\) integers \(a_1, a_2, \dots, a_n\) separated by spaces (\(1 \le a_i \le 10^9\)).

The third line contains \(n\) integers \(b_1, b_2, \dots, b_n\) separated by spaces (\(1 \le b_i \le 10^9\)).

It is guaranteed that the sum of the values of \(n\) over all test cases does not exceed \(2 \cdot 10^5\).

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\),但是在他后面以及自己前面的这些人都要支付\(b_k\)。

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

参考代码

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\) of size \(n\), and a number \(x\) that needs to be found. A permutation of length \(n\) is an array consisting of \(n\) distinct integers from \(1\) to \(n\) in arbitrary order. For example, \([2,3,1,5,4]\) is a permutation, but \([1,2,2]\) is not a permutation (\(2\) appears twice in the array), and \([1,3,4]\) is also not a permutation (\(n=3\) but there is \(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\) times before running the algorithm: choose the indices \(i\), \(j\) (\(1\le i, j \le n\)) and swap the elements at positions \(i\) and \(j\).

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

  1. If \(r - l = 1\), end the loop
  2. \(m = \lfloor \frac{r + l}{2} \rfloor\)
  3. If \(p_m \le x\), assign \(l = m\), otherwise \(r = m\).

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

Input

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

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

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

It is guaranteed that the sum of the values of \(n\) for all test cases does not exceed \(2\cdot 10^5\).

Output

For each test case, output an integer \(k\) (\(0 \le k \le 2\)) on the first line — the number of operations performed by you. In the next \(k\) lines, output \(2\) integers \(i\), \(j\) (\(1 \le i, j \le n\)) separated by a space, indicating that you are swapping the elements at positions \(i\) and \(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\)。

先对这组排列数使用二分法,返回出\(l\)指针最后停留的位置。题目需要我们满足\(p_l = x\),也就是说我们把\(l\)指针指向的元素和\(x\)的元素换一下,那么\(l\)指针指向的元素就一定是\(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))

Codeforces Round 935 (Div. 3)的更多相关文章

  1. Codeforces Round #366 (Div. 2) ABC

    Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...

  2. Codeforces Round #354 (Div. 2) ABCD

    Codeforces Round #354 (Div. 2) Problems     # Name     A Nicholas and Permutation standard input/out ...

  3. Codeforces Round #368 (Div. 2)

    直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...

  4. cf之路,1,Codeforces Round #345 (Div. 2)

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

  5. Codeforces Round #279 (Div. 2) ABCDE

    Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems     # Name     A Team Olympiad standard input/outpu ...

  6. Codeforces Round #262 (Div. 2) 1003

    Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...

  7. Codeforces Round #262 (Div. 2) 1004

    Codeforces Round #262 (Div. 2) 1004 D. Little Victor and Set time limit per test 1 second memory lim ...

  8. Codeforces Round #371 (Div. 1)

    A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...

  9. Codeforces Round #268 (Div. 2) ABCD

    CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...

  10. 贪心+模拟 Codeforces Round #288 (Div. 2) C. Anya and Ghosts

    题目传送门 /* 贪心 + 模拟:首先,如果蜡烛的燃烧时间小于最少需要点燃的蜡烛数一定是-1(蜡烛是1秒点一支), num[g[i]]记录每个鬼访问时已点燃的蜡烛数,若不够,tmp为还需要的蜡烛数, ...

随机推荐

  1. 应急响应web1

    应急响应的过程 目的:分析攻击时间.攻击操作.攻击结果.安全修复等并给出合理的解决方案. 保护阶段:直接断网,保护现场,看是否能够恢复数据: 分析阶段:对入侵过程进行分析,常见的方法为指纹库搜索.日志 ...

  2. 当你用neovim的mason插件管理lsp config,并且配置好bash的bashls后,却没有正常工作的解决方式

    刚开始遇到这个情况我百思不得其解,检查了neovim checkhealth,以为是npm包管理的问题,然后删了下删了下 不但没有解决还把包管理整乱了-- 后来发现是我没仔细看bash-languag ...

  3. leaflet 使用高德地图实例

    let map = L.map("mapid", { minZoom: 10, maxZoom: 15, center: [37.005646, 114.52044], zoom: ...

  4. Java 工程文件的 .gitignore

    以下是一个排查 Java 工程文件的 .gitignore 文件示例: # Java 编译器生成的文件 *.class # Maven 生成的文件夹 target/ # Eclipse 生成的文件夹 ...

  5. 从XML配置角度理解Spring AOP

    本文分享自华为云社区<Spring高手之路18--从XML配置角度理解Spring AOP>,作者: 砖业洋__. 1. Spring AOP与动态代理 1.1 Spring AOP和动态 ...

  6. 全面系统的AI学习路径,帮助普通人也能玩转AI

    前言 现如今AI技术和应用的发展可谓是如火如荼,它们在各个领域都展现出了巨大的潜力和影响力.AI的出现对于我们这些普通人而言也是影响匪浅,比如说使用AI工具GPT来写文档查问题.使用AI辅助编程工具帮 ...

  7. Linux搭建ES集群环境

    搭建ES集群环境 准备 三台服务器 其中一台为主机节点 ES安装自行上传到各个节点home路径下并解压重命名 集群名称:cluster-big-data同一个集群多个节点,集群名称必须相同,节点名称不 ...

  8. containerd 源码分析:kubelet 和 containerd 交互

    0. 前言 Kubernetes:kubelet 源码分析之创建 pod 流程 介绍了 kubelet 创建 pod 的流程,其中介绍了 kubelet 调用 runtime cri 接口创建 pod ...

  9. HTML——input标签

    很多表单元素都是由一个个的 input 元素组成的.它是自闭合标签,根据其 type 属性值的不同分为很多种,例如单行文本框.密码框.单选按钮.复选框.隐藏域.文件上传域.普通按钮.提交按钮以及重置按 ...

  10. Android 13 - Media框架(13)- OpenMax(一)

    关注公众号免费阅读全文,进入音视频开发技术分享群! 这一节我们将了解Android OpenMax框架,该框架了解完成之后,我们会再回过头去了解 ACodec,将 MediaCodec - ACode ...