-
Notifications
You must be signed in to change notification settings - Fork 0
/
HackeRank_Candies_C#
101 lines (97 loc) · 3.37 KB
/
HackeRank_Candies_C#
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
98
99
100
101
//Solution to https://www.hackerrank.com/challenges/candies/problem
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
class Solution {
public static int minCandies = 0;
static void Main(String[] args) {
int N = Convert.ToInt32(Console.ReadLine());
int[] dp = new int[N];
List<int> ratings = new List<int>();
for(int i = 0; i < N; i++){
ratings.Add(Convert.ToInt32(Console.ReadLine()));
}
double result = 0;
bool isSorted = IsSorted(ratings);
if(!isSorted){
for(int j = 0; j < N; j++){
dp[j] = -1;
}
for(int k = 0; k < N; k++){
GetMinCandies(k, ratings, ref dp);
}
result = dp.Sum();
}
else{
double n = Convert.ToDouble(N);
result = n * (n + 1) / 2;
}
Console.WriteLine(result);
}
public static int GetMinCandies(int start, List<int> ratings, ref int[] dp){
if(start < 0 || start >= ratings.Count){
return 0;
}
if(dp[start] == -1){
if(start == 0){
if(ratings[start + 1] >= ratings[start]){
dp[start] = 1;
}
else{
dp[start] = 1 + GetMinCandies(start + 1, ratings, ref dp);
}
}
else if(start == (ratings.Count - 1)){
if(ratings[start - 1] >= ratings[start]){
dp[start] = 1;
}
else{
dp[start] = 1 + GetMinCandies(start - 1, ratings, ref dp);
}
}
else{
if (ratings[start] <= ratings[start - 1] && ratings[start] <= ratings[start + 1])
{
dp[start] = 1;
}
else if (ratings[start] > ratings[start - 1] && ratings[start] <= ratings[start + 1])
{
dp[start] = GetMinCandies(start - 1, ratings, ref dp) + 1;
}
else if (ratings[start] <= ratings[start - 1] && ratings[start] > ratings[start + 1])
{
dp[start] = GetMinCandies(start + 1, ratings, ref dp) + 1;
}
else if(ratings[start] > ratings[start - 1] && ratings[start] > ratings[start + 1])
{
int u = GetMinCandies(start - 1, ratings, ref dp);
int v = GetMinCandies(start + 1, ratings, ref dp);
int max = u > v ? u : v;
dp[start] = max + 1;
}
}
}
return dp[start];
}
public static bool IsSorted(List<int> sequence){
int m = sequence[0];
bool increasing = true;
bool decreasing = true;
for(int i = 1; i < sequence.Count; i++){
if(sequence[i] > m){
decreasing = false;
m = sequence[i];
continue;
}
if(sequence[i] < m){
increasing = false;
m = sequence[i];
continue;
}
increasing = decreasing = false;
break;
}
return increasing || decreasing;
}
}