Codeforces Round 655 (Div. 2)

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
1372 Codeforces Round 655 (Div. 2) FINISHED False 7200 142872911 July 11, 2020, 3:05 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 1282 ) E Omkar and Last Floor PROGRAMMING dp two pointers 2900

B"Omkar is building a house. He wants to decide how to make the floor plan for the last floor. Omkar's floor starts out as n rows of m zeros ( 1 <= n,m <= 100 ). Every row is divided into intervals such that every 0 in the row is in exactly 1 interval. For every interval for every row, Omkar can change exactly one of the 0 s contained in that interval to a 1 . Omkar defines the quality of a floor as the sum of the squares of the sums of the values in each column, i. e. if the sum of the values in the i -th column is q_i , then the quality of the floor is sum_{i = 1}^m q_i^2 . Help Omkar find the maximum quality that the floor can have. The first line contains two integers, n and m ( 1 <= n,m <= 100 ), which are the number of rows and number of columns, respectively. You will then receive a description of the intervals in each row. For every row i from 1 to n : The first row contains a single integer k_i ( 1 <= k_i <= m ), which is the number of intervals on row i . The j -th of the next k_i lines contains two integers l_{i,j} and r_{i,j} , which are the left and right bound (both inclusive), respectively, of the j -th interval of the i -th row. It is guaranteed that all intervals other than the first interval will be directly after the interval before it. Formally, l_{i,1} = 1 , l_{i,j} <= q r_{i,j} for all 1 <= j <= k_i , r_{i,j-1} + 1 = l_{i,j} for all 2 <= j <= k_i , and r_{i,k_i} = m . Output one integer, which is the maximum possible quality of an eligible floor plan. The given test case corresponds to the following diagram. Cells in the same row and have the same number are a part of the same interval. The most optimal assignment is: The sum of the 1 st column is 4 , the sum of the 2 nd column is 2 , the sum of the 3 rd and 4 th columns are 0 , "...

Tutorials

Codeforces Round #655 Editorial

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
86583992 Pyqe E July 11, 2020, 4:43 p.m. OK GNU C++11 TESTS 76 31 4505600 2900
86611273 stoorz E July 12, 2020, 1:41 a.m. OK GNU C++11 TESTS 76 31 9318400 2900
86614635 tjd229 E July 12, 2020, 3:11 a.m. OK GNU C++11 TESTS 76 46 3788800 2900
86614151 chenshi028 E July 12, 2020, 3:01 a.m. OK GNU C++11 TESTS 76 46 3891200 2900
86607162 aniervs E July 11, 2020, 10:41 p.m. OK GNU C++11 TESTS 76 46 3993600 2900
86620300 LJb00131 E July 12, 2020, 5:10 a.m. OK GNU C++11 TESTS 76 61 3993600 2900
86612551 IAKWF E July 12, 2020, 2:19 a.m. OK GNU C++11 TESTS 76 61 3993600 2900
86609983 ActorBlack E July 12, 2020, 12:58 a.m. OK GNU C++11 TESTS 76 61 3993600 2900
86609627 downorup E July 12, 2020, 12:44 a.m. OK GNU C++11 TESTS 76 62 3891200 2900
86615045 Frame233 E July 12, 2020, 3:21 a.m. OK GNU C++11 TESTS 76 62 3993600 2900
86599135 xsc E July 11, 2020, 7:20 p.m. OK GNU C++14 TESTS 76 31 14233600 2900
86604318 retawB E July 11, 2020, 9:02 p.m. OK GNU C++14 TESTS 76 46 3891200 2900
86599063 leaf1415 E July 11, 2020, 7:19 p.m. OK GNU C++14 TESTS 76 46 3993600 2900
86588095 nikolapesic2802 E July 11, 2020, 4:56 p.m. OK GNU C++14 TESTS 76 46 4096000 2900
86617534 zhou2003 E July 12, 2020, 4:18 a.m. OK GNU C++14 TESTS 76 46 31027200 2900
86600223 krijgertje E July 11, 2020, 7:36 p.m. OK GNU C++14 TESTS 76 61 3891200 2900
86592434 MarcosK E July 11, 2020, 6:13 p.m. OK GNU C++14 TESTS 76 61 3993600 2900
86622263 Gnay_Oahnauhz E July 12, 2020, 5:45 a.m. OK GNU C++14 TESTS 76 62 3891200 2900
86618428 hkyiitd E July 12, 2020, 4:37 a.m. OK GNU C++14 TESTS 76 62 3891200 2900
86612244 llmxby E July 12, 2020, 2:12 a.m. OK GNU C++14 TESTS 76 62 3891200 2900

remove filters

Back to search problems