Weekly Contest 1 - UM ICPC Training Group

頭文件
A - Roaming Romans
The English word “mile” derives from the Latin “mille passus”, meaning “a thousand paces”. A Roman mile was the distance a soldier would walk in?1000?paces (a pace being two steps, one with each foot).
Over time, the actual distance referred to as a “mile” has changed. The modern English mile is?5280?(modern) feet. The Roman mile is believed to have been about?4854?(modern) feet. Therefore a distance of???English miles would correspond to?
?Roman paces.
Write a program to convert distances in English miles into Roman paces.
Input
Input will consist of a single line containing a single real number???denoting a distance in English miles. The number?
?has at most?3?digits of precision after the decimal point.
Output
Print an integer denoting the closest number of Roman paces equivalent to . Your answer should be rounded to the closest integer (with an exact?.5?decimal part rounded up).
Sample


標(biāo)準(zhǔn)模擬題,按照公式轉(zhuǎn)換即可。
B - Harshad Numbers
We’re all familiar with harshad numbers. For this problem, you will ... what’s that? You?aren’t?familiar with harshad numbers? They’re also known as Niven numbers – does that ring a bell?? Anything???
Well, it’s a simple enough concept. A?harshad?number is a number which is evenly divisible by the sum of its digits. For example,?24?is a harshad number: the sum of its digits is??and?24?is divisible by?6.?156?is also a harshad number, since?
?and?
.?157?is NOT a harshad number since it is not divisible by?
.
OK, let’s start over.
We’re all familiar with harshad numbers. For this problem, you will be given a number??and must find the smallest harshad number?
.
Inpute
Input consists of a single line containing a positive integer?
Output
Display the smallest harshad number greater than or equal to?.
Sample



模擬題。如果一個(gè)數(shù)可以整除其每位數(shù)之和,這個(gè)數(shù)就稱(chēng)為Harshad Number。給一個(gè)數(shù),讓求大于等于這個(gè)數(shù)的Harshad Number。
C - Increasing Array
You are given an array of??integers. You want to modify the array so that it is increasing, i.e., every element is at least as large as the previous element.
On each move, you may increase the value of any element by one. What is the minimum number of moves required?
Input
The first input line contains an integer : the size of the array.
Then, the second line contains?nn?integers?: the contents of the array.
Output
Print the minimum number of moves.
Constraints
Sample

模擬題。題意將輸入的數(shù)組修改為遞增數(shù)組,每次僅修改一個(gè)值將其加一。不是排序!
D - So I’ll Max Out My Constructive Algorithm Skills
BaoBao the Witch is stuck in a maze with rows and
columns, where the height of the cell in the
-th
row and the
-th column is
. To get out of the maze, BaoBao has to find a path which passes through
each cell exactly once. Each time she can only move into the neighboring cell sharing a same edge with
the current one. But as we know, BaoBao is super lazy, so every time when she climbs up (that is to
say, moving from a cell with a smaller height to another with a larger height) her happiness value will
decrease. As her helping hand, your task is to find a valid path so that when moving along the path, the
number of times BaoBao climbs up will not be more than the number of times she climbs down.
More formally, you need to find a sequence?
such that:
For all?
For all?
For all?
?where
?equals
?when?
?is true, and equals?
?when it is false.
Additionally, you discover that the heights in all cells are a permutation of , so you just need to output
the height of each cell in a valid path.
Input
There are multiple test cases. The first line of the input contains an integer ?indicating
the number of test cases.?
For each test case:
The first line contains an integer ?indicating the size of the maze.?
For the following??lines, the
-th line contains
integers?
?where
? indicates the height of the cell in the
-th row and the
-th column. It’s guaranteed that all integers in
the input make up a permutation of
.
Output
For each test case output one line containing separated by a space indicating the heights of each cell
in a valid path. If there are multiple valid answers you can output any of them. It’s easy to prove that an
answer always exists.
Please, DO NOT output extra spaces at the end of each line, or your answer may be considered incorrect!
Example

本題為2021 ICPC Asia Macau區(qū)域賽A題(簽到題)。題目大意為一個(gè)矩陣,其中的值代表高度,每個(gè)各不相同,只能上下左右移動(dòng),求一條路下降次數(shù)大于等于上升次數(shù)。最開(kāi)始想用DFS,WA四次之后發(fā)現(xiàn)只用看最后up和down誰(shuí)大就好,蛇形矩陣遍歷一遍,如果不符合要求翻轉(zhuǎn)一遍就是結(jié)果。
E - Link-Cut Tree
BaoBao just learned how to use a data structure called link-cut tree to find cycles in a graph and decided
to give it a try. BaoBao is given an undirected graph with vertices and
edges, where the length of
the
-th edge equals
. She needs to find a simple cycle with the smallest length.
A simple cycle is a subgraph of the original graph containing? vertices
?and
edges such that for all
?there is an edge connecting vertices
and
?in the subgraph.
The length of a simple cycle is the total length of the edges in the cycle.
Input
There are multiple test cases. The first line of the input contains an integer indicating the number of
test cases.
For each test case:
The first line contains two integers and
?indicating the number of vertices
and edges in the original graph.
For the following m lines, the
-th line contains two integers
and
indicating an edge
connecting vertices ui and vi with length
.
There are no self loops nor multiple edges. Note that the graph is not necessarily connected.
It’s guaranteed that neither the sum of nor the sum of m of all test cases will exceed
.
Output
For each test case output one line. If there are no simple cycles in the graph output “-1” (without quotes);
Otherwise output integers separated by a space in increasing order indicating the indices of the edges
in the simple cycle with the smallest length. It can be shown that there is at most one answer.
Please, DO NOT output extra spaces at the end of each line, or your solution may be considered incorrect!
Example

本題為2021 ICPC Asia Macau區(qū)域賽K題(簽到題),人菜沒(méi)做出來(lái)。解法應(yīng)該是并查集判環(huán),DFS或者BFS遍歷輸出。上個(gè)AC代碼下來(lái)研究。
F - Random Permutation
An integer sequence with length?nn, denoted by?, is generated randomly, and the probability of being?
?are all?
?for each?
.
Your task is to calculate the expected number of permutations??from?1?to?
?such that?
?holds for each?
.
Input
The only line contains an integer?.
Output
Output the expected number of permutations satisfying the condition. Your answer is acceptable if its absolute or relative error does not exceed?.
Formally speaking, suppose that your output is??and the jury's answer is?
. Your output is accepted if and only if?
.



本題為2020?ICPC Asia Macau區(qū)域賽L題(簽到題)數(shù)學(xué)推論題。題意大概為長(zhǎng)度為的數(shù)組
,每個(gè)數(shù)都為
的概率都為
,對(duì)于其全排列數(shù)組
,對(duì)任意的
,?
都成立的概率為多少。
G - Prince and Princess

線(xiàn)性DP題。題目說(shuō)了一大串,但實(shí)際上就是求個(gè)數(shù)字和
個(gè)數(shù)字的最長(zhǎng)公共子序列。但用普通的LCS算法復(fù)雜度直接變成
,所以要換思路。題目中說(shuō)每一個(gè)數(shù)都不相同,可以使序列a有序,使序列b按照相同的法則進(jìn)行映射,轉(zhuǎn)化成LIS。