-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCRNVALEN.cpp
98 lines (86 loc) · 2.41 KB
/
CRNVALEN.cpp
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include<iostream>
#include<stdio.h>
#define max 10001
using namespace std;
int main()
{
int t, n, input[max];
scanf("%d", &t);
while(t-->0)
{
scanf("%d", &n);
int hash[max] = {0}, positionsAlloted[max]={0};
int a;
// taking the first input
scanf("%d", &a);
input[0] = a;
int maxFound = a;
int minFound = a;
int errorFound = 0;
for(int i = 1;i < n; ++i)
{
scanf("%d", &input[i]);
if( input[i] >= n )
{
errorFound = 1;
}
else
{
if( input[i] > maxFound )
maxFound = input[i];
if( input[i] < minFound )
minFound = input[i];
}
}
if(errorFound)
printf("-1\n");
else
{
// check the values of every input
for(int i = 0;i < n; ++i)
{
if( input[i] == maxFound )
positionsAlloted[i] = 0;
if( input[i] == minFound )
positionsAlloted[i] = 1;
if( input[i] != minFound && input[i] != maxFound )
{
errorFound = 1;
break;
}
}
if( maxFound == minFound && maxFound == 0 )
printf("0\n");
else if( errorFound || maxFound - minFound > 1 )
printf("-1\n");
else
{
int totalCount = 0;
for(int i = 0;i < n; ++i)
{
if(positionsAlloted[i] == 1)
totalCount++;
}
// check the validity of the position
for(int i = 0;i < n; ++i)
{
if( positionsAlloted[i] == 1 && input[i] != totalCount - 1 )
{
errorFound = 1;
break;
}
if( positionsAlloted[i] == 0 && input[i] != totalCount )
{
errorFound = 1;
break;
}
}
if(errorFound)
printf("-1\n");
else
printf("%d\n", totalCount);
}
}
}
return 0;
}