Codeforces Round 733 (Div. 1 + Div. 2, based on VK Cup 2021 - Elimination (Engine))

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
1530 Codeforces Round 733 (Div. 1 + Div. 2, based on VK Cup 2021 - Elimination (Engine)) FINISHED False 10800 110647463 July 17, 2021, 2:35 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 166 ) H Turing's Award PROGRAMMING data structures dp

B"Alan Turing is standing on a tape divided into cells that is infinite in both directions. Cells are numbered with consecutive integers from left to right. Alan is initially standing in cell 0 . Every cell x has cell x - 1 on the left and cell x + 1 on the right. Each cell can either contain an integer or be empty. Initially all cells are empty. Alan is given a permutation a_1, a_2, ldots, a_n of integers from 1 to n that was chosen uniformly at random among all permutations of length n . At time 1 , integer a_1 is written down into cell 0 where Alan is located. At each time i from 2 to n inclusive, the following happens. First, Alan decides whether to stay in the same cell he's currently in, move to the neighboring cell on the left, or move to the neighboring cell on the right. After that, integer a_i is written down into the cell where Alan is located. If that cell already contained some integer, the old integer is overwritten and irrelevant from that moment on. Once a_n is written down into some cell at time n , sequence b of all integers contained in the cells from left to right is formed. Empty cells are ignored. Turing's award is equal to the length of the longest increasing subsequence of sequence b . Help Alan and determine the largest possible value of his award if he acts optimally. Each test contains multiple test cases. The first line contains the number of test cases t ( 1 <= t <= 1000 ). Description of the test cases follows. Each test case is given in two lines. The first line of each test case contains a single integer n ( 2 <= n <= 15 ,000 ) -- the length of the permutation given to Alan. The second line contains n distinct integers a_1, a_2, ldots, a_n ( 1 <= a_i <= n ) -- the elements of the permutation. It is guaranteed that the permutation was chosen uniformly at random among all pe"...

Tutorials

Codeforces Round #733 Editorial (all problems)

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
122871259 lalit_of_mirzapur H July 17, 2021, 9:36 p.m. OK GNU C++17 TESTS 94 6941 223539200
122871696 Benq H July 17, 2021, 9:50 p.m. OK GNU C++17 (64) TESTS 94 592 4710400
122889728 jiangIy H July 18, 2021, 5:15 a.m. OK GNU C++17 (64) TESTS 94 1169 152371200
122849012 maroonrk H July 17, 2021, 5:07 p.m. OK GNU C++17 (64) TESTS 94 2604 127078400
122848567 noshi91 H July 17, 2021, 5:06 p.m. OK GNU C++17 (64) TESTS 94 2885 5836800
122878437 yhx-12243 H July 18, 2021, 1:48 a.m. OK GNU C++17 (64) TESTS 94 3150 113049600
122876667 ainta H July 18, 2021, 1 a.m. OK GNU C++17 (64) TESTS 94 3509 408576000
122851665 jiangly H July 17, 2021, 5:16 p.m. OK GNU C++17 (64) TESTS 94 4976 224358400
122864197 scott_wu H July 17, 2021, 7:26 p.m. OK GNU C++17 (64) TESTS 94 9968 46796800

remove filters

Back to search problems