티스토리 뷰
https://www.acmicpc.net/problem/10816
소스코드
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
int T;
int N, K, num;
cin >> T;
vector<int> v;
for(int i = 0; i < T; i++){
cin >> num;
v.push_back(num);
}
sort(v.begin(), v.end());
cin >> T;
vector<int> answer;
for(int i = 0; i < T; i++){
cin >> K;
auto upper = upper_bound(v.begin(), v.end(), K);
auto lower = lower_bound(v.begin(), v.end(), K);
answer.push_back(upper - lower);
}
for(auto n : answer){
cout << n << ' ';
}
}
- 입력받은 첫번째 벡터를 정렬한다
- upper_bound는 뒤에서, lower_bound는 앞에서 찾기때문에 두개를 빼주면 원소의 개수가 출력가능하다.
시간초과 코드 1
int findIndex(vector<int> v, int number){
auto i= find(v.begin(), v.end(), number);
if(i != v.end()){
int index = i - v.begin(); //인덱스가 나온다
cout << "index : " << index << endl;
return index;
}
else{
return -1; // 0 번째 인덱스랑 구분하기 위함
}
}
int main(){
// ...
cin >> m;
for (i = 0; i < m; i++){
cnt = 0;
cin >> number;
index = findIndex(v1, number);
if(index == -1){
v2.push_back(0);
}
else{
do{
cnt++;
index++;
}while(v1[index] == number);
v2.push_back(cnt);
}
}
//...
}
- Index를 찾아서 입력받은 수의 개수를 while문으로 count하는 방법을 생각했다.
- 그러나 N^2의 시간복잡도를 만들어버렸다. 그래서 find 대신 count를 사용해보기로했다.
시간초과 코드 2
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m, number, i, index, cnt;
vector<int> v1, v2;
cin >> n;
for (i = 0; i < n; i++){
cin >> number;
v1.push_back(number);
}
sort(v1.begin(), v1.end());
cin >> m;
for (i = 0; i < m; i++){
cin >> number;
cnt = count(v1.begin(), v1.end(), number);
v2.push_back(cnt);
}
for (i = 0; i < m; i++){
cout << v2[i] << '\n';
}
}
또 시간초과. find와 count 모두 시간복잡도가 (N)임에도 역부족인듯하다. 시간초과와 관련된 문제들은 메모리구조, 탐색, 정렬을 공부하기에 좋은듯하다.
'Algorithm > Baekjoon Online Judge' 카테고리의 다른 글
백준 1026 보물 [C++] (0) | 2021.07.31 |
---|---|
백준 1284 집 주소 [C++] (0) | 2021.07.29 |
백준 10867 중복빼고 정렬하기 [C++] (0) | 2021.07.25 |
백준 10828번 스택 [C++] (0) | 2021.07.21 |
백준알고리즘 10815 숫자카드 [C++] (0) | 2021.07.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 부트스트랩
- 국비교육
- 오라클
- CSS
- 스프링부트
- Java
- 넥사크로
- CS
- 네트워크
- 이클립스
- 프로그래머스
- svn
- Open API
- SQL
- 개발용어
- JSP
- 백준
- HeidiSQL
- 스프링
- 인턴
- Thymeleaf
- C++
- C
- 오류
- 환경설정
- JVM
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함