Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 멋사
- 대외활동
- 알고리즘
- 운영체제
- 스유
- uikit
- 네트워크
- spritekit
- widgetkit
- 리액트
- composable architecture
- 멋쟁이사자처럼
- c++
- 문법
- 위젯킷
- Protocol
- 스위프트
- 백준
- widget
- 1일1알골
- swift concurrency
- Swift
- 웹
- SwiftUI
- 후기
- TCA
- 컴퓨터그래픽스
- cs
- dispatchqueue
- 영남대
Archives
- Today
- Total
맛동산이
(백준 10816 c++) 숫자카드 2 본문
문제
https://www.acmicpc.net/problem/10816
정답코드
#include <set>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int n, m;
cin >> n;
int number1, number2;
vector<int> arr1;
for (int a = 0; a < n; a++)
{
cin >> number1;
arr1.push_back(number1);
}
sort(arr1.begin(), arr1.end());
cin >> m;
for (int a = 0; a < m; a++)
{
cin >> number2;
auto upper = upper_bound(arr1.begin(), arr1.end(), number2);
auto lower = lower_bound(arr1.begin(), arr1.end(), number2);
cout << upper - lower << " ";
}
}
해설
처음에는 multiset에 count를 사용해서 해결하려고 했는데 틀렸다고 나와서 보니 시간복잡도가 O(n)이었음,
그리고 그냥 sort 하지않고 set을사용해서 자동으로 정렬하려고 했는데 그것도 오류남.
결국 백터를사용했고, upper lower_bound했는데, 이것도 시간초과남.
그래서 시간줄이는 방법으로 ios:: 저거 썼더니 패스.
ios::sync_with_stdio(false);
cin.tie(NULL);
반응형
'알고리즘 > 백준' 카테고리의 다른 글
백준) 2231 분해합 [Swift] (0) | 2023.08.09 |
---|---|
백준) 2839 설탕배달 [Swift] (0) | 2023.08.09 |
(백준 2164 c++) 카드2 (0) | 2022.07.05 |
(백준 9012 c++) 괄호 (0) | 2022.07.05 |
(백준 1764) 듣보잡 (0) | 2022.06.29 |