Codeforces Round 837 (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
1771 Codeforces Round 837 (Div. 2) FINISHED False 7200 66407063 Dec. 11, 2022, 3:35 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 15321 ) B Hossam and Friends PROGRAMMING binary search constructive algorithms dp two pointers

B"Hossam makes a big party, and he will invite his friends to the party. He has n friends numbered from 1 to n . They will be arranged in a queue as follows: 1, 2, 3, ldots, n . Hossam has a list of m pairs of his friends that don't know each other. Any pair not present in this list are friends. A subsegment of the queue starting from the friend a and ending at the friend b is [a, a + 1, a + 2, ldots, b] . A subsegment of the queue is called good when all pairs of that segment are friends. Hossam wants to know how many pairs (a, b) there are ( 1 <= a <= b <= n ), such that the subsegment starting from the friend a and ending at the friend b is good. The input consists of multiple test cases. The first line contains a single integer t ( 1 <= t <= 2 cdot 10^4 ), the number of test cases. Description of the test cases follows. The first line of each test case contains two integer numbers n and m ( 2 <= n <= 10^5 , 0 <= m <= 10^5 ) representing the number of friends and the number of pairs, respectively. The i -th of the next m lines contains two integers x_i and y_i ( 1 <= x_i, y_i <= n , x_i neq y_i ) representing a pair of Hossam's friends that don't know each other. Note that pairs can be repeated. It is guaranteed that the sum of n over all test cases does not exceed 10^5 , and the sum of m over all test cases does not exceed 10^5 . For each test case print an integer -- the number of good subsegments. In the first example, the answer is 4 . The good subsegments are: [1] [2] [3] [1, 2] In the second example, the answer is 5 . The good subsegments are: [1] [2] [3] [4] [3, 4] "...

Tutorials

Codeforces Round #837 (Div. 2) Editorial

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
184833449 Luban B Dec. 12, 2022, 1:39 a.m. OK GNU C++14 TESTS 23 46 409600
184832066 zltzlt B Dec. 12, 2022, 1 a.m. OK GNU C++14 TESTS 23 46 409600
184831032 Chen_Jinhui B Dec. 12, 2022, 12:31 a.m. OK GNU C++14 TESTS 23 46 409600
184839346 poxiao002 B Dec. 12, 2022, 3:29 a.m. OK GNU C++14 TESTS 24 46 819200
184831383 chinawcp B Dec. 12, 2022, 12:41 a.m. OK GNU C++14 TESTS 23 46 819200
184830267 sybsyb B Dec. 12, 2022, 12:07 a.m. OK GNU C++14 TESTS 23 46 819200
184842445 XIN1111 B Dec. 12, 2022, 4:18 a.m. OK GNU C++14 TESTS 24 46 1638400
184836328 runandgoxyz B Dec. 12, 2022, 2:38 a.m. OK GNU C++14 TESTS 23 46 1638400
184828027 saudjafar B Dec. 11, 2022, 11:05 p.m. OK GNU C++14 TESTS 23 61 409600
184839659 Kevin8502 B Dec. 12, 2022, 3:34 a.m. OK GNU C++14 TESTS 24 61 3993600

remove filters

Back to search problems