Roy and Code Streak | HackerEarth Challenge


This is the HackerEarth challenge of easy level. Problem Link Roy and Code Streak.

Problem:

Roy is working on HackerEarth Profile. Right now he is working on User Statistics. One of the statistics data (Code Streak) is as follows:

Given the User Activity Data, find the maximum number of continuous correct solutions submitted by any user.
Seems easy eh? Here’s the catch! In order to maximize this number a user could have submitted a correct answer to the same problem which he has already solved. Now such cases cannot be tolerated. (See test case for clarification). Also in all the continuous correct submissions multiple correct submissions to same problem should be counted only once.

User Activity Data will be as follows:
Total number of submissions by the user - N
For each submission its Submission ID - S and Result - R (Solved or Unsolved) will be given.
Solved is represented by integer 1 and Unsolved by 0.

Input:

First line contains integer T - number of test cases. T test cases follow. First line of each test case will contain N. Next N lines each will contain two space separated integers S and R.

Output:

For each test case output in a single line the required answer.

Constraints:

1 <= T <= 1000
1 <= N <= 1000000 (106)
1 <= S <= 1000000 (106)
0 <= R <= 1

Note: Sum of N over all the test cases in each file does not exceed 1000000 (106)

Sample

Solution:

For fast I/O in C++, use std::ios::sync_with_stdio(false) and std::cin.tie(nullptr) at beginning in the main function.

std::ios::sync_with_stdio(false) disables the synchronization between the C and C++ standard streams. By default all standard streams are synchronized, which in practice allow mixing C and C++ I/O streams and get expected results. Refer std::ios_base::sync_with_stdio

std::cin.tie(nullptr) unties cin from cout. By default they are tied and flushing of std::cout (visible on console) occurs before std::cin accepts an input. After untie we can get to input before getting the output.

We have used unordered___set to store submission id. std::unordered_set<unsigned int> submissions; We will insert a value in submissions only if the result for that submission id is 1(i.e. successfully submitted) and count of that submission id is 0 in the submissions(unordered_set) means that submission id is not submitted before.

If encounter result is 0 then we have to reset count because we want a streak of successful submissions.

Member functions used:

clear() : It erases all elements from the unordered_set. After this call, size() returns zero.
insert() : It insert value in unordered_set, if it does not contain thar value.
count() : It returns the number of occurence of that element in the unordered_set, which is 0 or 1.
max() : It is defined in header and it returns the greater of the two values.

Refer std::max and std::unordered_set

C++ implementation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <iostream>
#include <algorithm>
#include <unordered_set>

int main() 
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    unsigned int turns, no_of_submissions, s_id, result;
    std::unordered_set<unsigned int> submissions;

    std::cin >> turns;
    while (turns--) 
    {
        unsigned int count = 0, max_count = 0;

        submissions.clear();

        std::cin >> no_of_submissions;

        for (unsigned int i = 0; i < no_of_submissions; ++i) 
        {
            std::cin >> s_id >> result;

            if (result == 1 && submissions.count(s_id) == 0)
            {
                count++;
                submissions.insert(s_id);
            }
            else if (result == 0)
            {
                count = 0;
            }
            max_count = std::max(count, max_count);
        }
        std::cout << max_count << "\n";
    }
}

View this code on Github

Get this post in pdf form.

Reference:
Why does the following snippet speed up the code?
Significance of ios_base::sync_with_stdio(false); cin.tie(NULL);
Fast I/O for Competitive Programming