Header Ad

HackerEarth Uniqueness violation problem solution

In this HackerEarth Uniqueness violation problem solution you are given an integer N. You are provided with an array of exactly N integers denoted by Ai. Also, you are provided with the uniqueness value for each array element and is denoted as Ui. Your task is to pick the array elements in such a way that no two adjacent array elements picked have the same value of uniqueness and the sum of values picked is maximum.


HackerEarth Uniqueness violation problem solution


HackerEarth Uniqueness violation problem solution.

#include <bits/stdc++.h>
using namespace std;

int main() {

ios_base::sync_with_stdio(false);
cin.tie(NULL);
int T;
cin>>T;
while(T--)
{
int N,M;
cin>>N;
int color[N];
for(int i=0;i<N;i++)
cin>>color[i];
int arr[N];
for(int i=0;i<N;i++)
cin>>arr[i];
int ans=0;
for(int i=0;i<N;)
{
int j=i;
int maxval=arr[i];
for(j=i;j<N;j++)
if(color[i]==color[j])
maxval=max(maxval,arr[j]);
else
break;
i=j;
ans+=maxval;
}
cout<<ans<<endl;
}
}


Post a Comment

0 Comments