Educational Codeforces Round 107 (Rated for 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
1511 Educational Codeforces Round 107 (Rated for Div. 2) FINISHED False 7200 119114711 April 12, 2021, 2:35 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 24814 ) C Yet Another Card Deck PROGRAMMING brute force data structures implementation trees

B"You have a card deck of n cards, numbered from top to bottom, i. e. the top card has index 1 and bottom card -- index n . Each card has its color: the i -th card has color a_i . You should process q queries. The j -th query is described by integer t_j . For each query you should: The first line contains two integers n and q ( 2 <= n <= 3 cdot 10^5 ; 1 <= q <= 3 cdot 10^5 ) -- the number of cards in the deck and the number of queries. The second line contains n integers a_1, a_2, ... , a_n ( 1 <= a_i <= 50 ) -- the colors of cards. The third line contains q integers t_1, t_2, ... , t_q ( 1 <= t_j <= 50 ) -- the query colors. It's guaranteed that queries ask only colors that are present in the deck. Print q integers -- the answers for each query. Description of the sample: "...

Tutorials

89634

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
112881995 ducmanh161104 C April 13, 2021, 12:36 a.m. OK FPC TESTS 27 966 2412544

remove filters

Back to search problems