-
Notifications
You must be signed in to change notification settings - Fork 849
/
Copy path1.cpp
37 lines (30 loc) · 1013 Bytes
/
1.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
#include <bits/stdc++.h>
using namespace std;
// 값이 [left_value, right_value]인 데이터의 개수를 반환하는 함수
int countByRange(vector<int>& v, int leftValue, int rightValue) {
vector<int>::iterator rightIndex = upper_bound(v.begin(), v.end(), rightValue);
vector<int>::iterator leftIndex = lower_bound(v.begin(), v.end(), leftValue);
return rightIndex - leftIndex;
}
int n, x;
vector<int> v;
int main() {
// 데이터의 개수 N, 찾고자 하는 값 x 입력받기
cin >> n >> x;
// 전체 데이터 입력 받기
for (int i = 0; i < n; i++) {
int temp;
cin >> temp;
v.push_back(temp);
}
// 값이 [x, x] 범위에 있는 데이터의 개수 계산
int cnt = countByRange(v, x, x);
// 값이 x인 원소가 존재하지 않는다면
if (cnt == 0) {
cout << -1 << '\n';
}
// 값이 x인 원소가 존재한다면
else {
cout << cnt << '\n';
}
}