Codeforces Round 693 (Div. 3)

Solutions are presented as using the least memory and the fastest execution time. It also takes the top 10 most recent solutions from each language. If you want to limit to a specific index, click the "Solved" button and go to that problem.

ContestId
Name
Phase
Frozen
Duration (Seconds)
Relative Time
Start Time
1472 Codeforces Round 693 (Div. 3) FINISHED False 7200 127409063 Jan. 4, 2021, 2:35 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 4870 ) G Moving to the Capital PROGRAMMING dfs and similar dp graphs shortest paths

B'There are n cities in Berland. The city numbered 1 is the capital. Some pairs of cities are connected by a one-way road of length 1. Before the trip, Polycarp for each city found out the value of d_i -- the shortest distance from the capital (the 1 -st city) to the i -th city. Polycarp begins his journey in the city with number s and, being in the i -th city, chooses one of the following actions: Since the government of Berland does not want all people to come to the capital, so Polycarp no more than once can take the second action from the list. in other words, he can perform the second action 0 or 1 time during his journey. Polycarp, on the other hand, wants to be as close to the capital as possible. For example, if n = 6 and the cities are connected, as in the picture above, then Polycarp could have made the following travels (not all possible options): Polycarp wants for each starting city i to find out how close he can get to the capital. More formally: he wants to find the minimal value of d_j that Polycarp can get from the city i to the city j according to the rules described above. The first line contains one integer t ( 1 <= q t <= q 10^4 ) -- the number of test cases. Then t test cases follow. Each test case is preceded by an empty line. The first line of each test case contains two integers n ( 2 <= q n <= q 2 cdot 10^5 ) and m ( 1 <= q m <= q 2 cdot 10^5 ) -- number of cities and roads, respectively. This is followed by m lines describing the roads. Each road is characterized by two integers u and v ( 1 <= q u, v <= q n, u ne v ) -- the numbers of cities connected by a one-way road. It is guaranteed that the sums of n and m over all test cases do not exceed 2 cdot 10^5 . It is guaranteed that for each pair of different cities (u, v) there is at most one road from u '...

Tutorials

Codeforces Round #693 (Div. 3) Editorial

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
103338862 Dreamfarer G Jan. 5, 2021, 3:34 a.m. OK GNU C++11 TESTS 13 93 10547200
103343388 Rainer1116 G Jan. 5, 2021, 5:13 a.m. OK GNU C++11 TESTS 13 108 20070400
103333257 tyin G Jan. 5, 2021, 12:26 a.m. OK GNU C++11 TESTS 13 109 10547200
103336399 Dillonh_ G Jan. 5, 2021, 2:22 a.m. OK GNU C++11 TESTS 13 109 13619200
103337697 littlechai G Jan. 5, 2021, 3:02 a.m. OK GNU C++11 TESTS 13 109 30822400
103337602 littlechai G Jan. 5, 2021, 2:59 a.m. OK GNU C++11 TESTS 13 109 30822400
103344320 iyua G Jan. 5, 2021, 5:41 a.m. OK GNU C++11 TESTS 13 124 9318400
103307460 buttersky G Jan. 4, 2021, 4:59 p.m. OK GNU C++11 TESTS 13 124 11366400
103318202 georgerapeanu G Jan. 4, 2021, 6:40 p.m. OK GNU C++11 TESTS 13 124 17305600
103333850 AuCloud G Jan. 5, 2021, 12:52 a.m. OK GNU C++11 TESTS 13 124 20172800
103316457 fairy_lettuce G Jan. 4, 2021, 6:19 p.m. OK .NET Core C# TESTS 13 358 93286400

remove filters

Back to search problems