Maria plays college basketball and wants to go pro. Each season she maintains a record of her play. She tabulates the number of times she breaks her season record for most points and least points in a game. Points scored in the first game establish her record for the season, and she begins counting from there.
For example, assume her scores for the season are represented in the array . Scores are in the same order as the games played. She would tabulate her results as follows:
Count
Game Score Minimum Maximum Min Max
0 12 12 12 0 0
1 24 12 24 0 1
2 10 10 24 1 1
3 24 10 24 1 1
Given Maria's scores for a season, find and print the number of times she breaks her records for most and least points scored during the season.
Function Description
Complete the breakingRecords function in the editor below. It must return an integer array containing the numbers of times she broke her records. Index is for breaking most points records, and index is for breaking least points records.
breakingRecords has the following parameter(s):
- scores: an array of integers
Input Format
The first line contains an integer , the number of games.
The second line contains space-separated integers describing the respective values of .
Constraints
Output Format
Print two space-seperated integers describing the respective numbers of times her best (highest) score increased and her worst (lowest) score decreased.
Sample Input 0
9
10 5 20 20 4 5 2 25 1
Sample Output 0
2 4
Explanation 0
The diagram below depicts the number of times Maria broke her best and worst records throughout the season:
She broke her best record twice (after games and ) and her worst record four times (after games , , , and ), so we print 2 4
as our answer. Note that she did not break her record for best score during game , as her score during that game was notstrictly greater than her best record at the time.
Sample Input 1
10
3 4 21 36 10 28 35 5 24 42
Sample Output 1
4 0
Explanation 1
The diagram below depicts the number of times Maria broke her best and worst records throughout the season:
She broke her best record four times (after games , , , and ) and her worst record zero times (no score during the season was lower than the one she earned during her first game), so we print 4 0
as our answer.
Solution
#includeusing namespace std; vector split_string(string); // Complete the breakingRecords function below. vector breakingRecords(vector scores) { int minNum = 0; int maxNum = 0; int minCount = 0; int maxCount = 0; for (int i = 0; i < scores.size(); ++i) { if (i == 0) { minNum = scores[i]; maxNum = scores[i]; } else if (scores[i] < minNum) { minNum = scores[i]; ++minCount; } else if (maxNum < scores[i]) { maxNum = scores[i]; ++maxCount; } } vector changes; changes.reserve(2); changes.push_back(maxCount); changes.push_back(minCount); return changes; } int main() { ofstream fout(getenv("OUTPUT_PATH")); int n; cin >> n; cin.ignore(numeric_limits ::max(), '\n'); string scores_temp_temp; getline(cin, scores_temp_temp); vector scores_temp = split_string(scores_temp_temp); vector scores(n); for (int i = 0; i < n; i++) { int scores_item = stoi(scores_temp[i]); scores[i] = scores_item; } vector result = breakingRecords(scores); for (int i = 0; i < result.size(); i++) { fout << result[i]; if (i != result.size() - 1) { fout << " "; } } fout << "\n"; fout.close(); return 0; } vector split_string(string input_string) { string::iterator new_end = unique(input_string.begin(), input_string.end(), [] (const char &x, const char &y) { return x == y and x == ' '; }); input_string.erase(new_end, input_string.end()); while (input_string[input_string.length() - 1] == ' ') { input_string.pop_back(); } vector splits; char delimiter = ' '; size_t i = 0; size_t pos = input_string.find(delimiter); while (pos != string::npos) { splits.push_back(input_string.substr(i, pos - i)); i = pos + 1; pos = input_string.find(delimiter, i); } splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1)); return splits; }
출저 : https://www.hackerrank.com/challenges/breaking-best-and-worst-records/problem
'취미 > Programming Problems' 카테고리의 다른 글
[Codility] OddOccurrencesInArray (0) | 2023.05.02 |
---|---|
[백준] 2677번 - 단지 번호 붙이기 (0) | 2020.07.20 |
[ Hacker Rank ] 생일 초콜릿(Birthday Chocolate) (0) | 2018.08.22 |
[ 백준 ] 1065번 - 한수 (0) | 2018.07.27 |
[ Hacker Rank ] 캥거루(Kangaroo) (0) | 2018.07.25 |