Codeforces Round #722 (Div. 2) ABCD Solutions (Java/C++)

A. Eshag Loves Big Arrays

Solution:

Because can choose any subsequence. So, for some number x which is bigger than the minimum number of the array. This x will be nearby one of minimum number earlier or later. And this x will be removed then.

Code:

Java

Submission #117253647 - Codeforces
Codeforces. Programming competitions and contests, programming community

C++

Submission #117255571 - Codeforces
Codeforces. Programming competitions and contests, programming community

B. Sifid and Strange Subsequences

题解

First, choose all numbers which is less or equal than 0 is a choice.

Then we consider if we choose some positive numbers.
We can find that: at most we can pick up one positive number. And so, of course, it is better to choose smaller number. So, we choose the minimum positive value.
So, for the remained numbers, we choose the number from big to small one by one. And just need make sure the absolute value of the difference between two adjacent numbers is more or equal to the positive number.

Finally, we choose the max value between "all number less/equal to 0" and "one positive number".

代码

Java

Submission #117253718 - Codeforces
Codeforces. Programming competitions and contests, programming community

C++

Submission #117255823 - Codeforces
Codeforces. Programming competitions and contests, programming community

C. Parsa's Humongous Tree

Very classical problem of DP on the tree.

Codeforces Round #722 Parsa’s Humongous Tree Solution (Java/C++)
Solution:The first conclusion is: for any vertex, it will choose l or r. Because if and only if the case like example 2 can choose value between l and r
Click the link above for more details

D. Kavi on Pairing Duty

Just solve the case which n=4 manually. 70% of cases is obviously. The only hidden case is when n=4, can get another solution which is repeat the n=2 twice.

Codeforces Round #722 Kavi on Pairing Duty Solution (Java/C++)
Solution:Define dp[i] to represent the answer when n=i. We use the case n=4 to explain the solution.
Click the link above for more details
DigitalOcean Referral Badge 蜀ICP备19018968号