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
- 리액트
- composable architecture
- SwiftUI
- 알고리즘
- 백준
- TCA
- widget
- 스위프트
- 대외활동
- uikit
- 멋사
- 웹
- 네트워크
- 1일1알골
- widgetkit
- cs
- 영남대
- 멋쟁이사자처럼
- 위젯킷
- 운영체제
- Protocol
- 컴퓨터그래픽스
- spritekit
- 문법
- c++
- 스유
- Swift
- swift concurrency
- dispatchqueue
- 후기
Archives
- Today
- Total
맛동산이
(백준 1269) 대칭 차집합 본문
문제
https://www.acmicpc.net/problem/1269
정답코드
#include <vector>
#include <iostream>
#include <algorithm>
#include <map>
#include <set>
using namespace std;
// 3 5
// 1 2 4
// 2 3 4 5 6
int main()
{
int n, m;
cin >> n >> m;
set<int> arr1;
set<int> arr2;
vector<int> ar1;
vector<int> ar2;
int num1, num2;
int count1, count2;
count1 = n;
count2 = m;
for (int a = 0; a < n; a++)
{
cin >> num1;
arr1.insert(num1);
ar1.push_back(num1);
}
for (int a = 0; a < m; a++)
{
cin >> num2;
arr2.insert(num2);
ar2.push_back(num2);
}
for (int a = 0; a < n; a++)
{
if (arr2.find(ar1[a]) != arr2.end())
{
count1--;
}
}
for (int a = 0; a < m; a++)
{
if (arr1.find(ar2[a]) != arr1.end())
{
count2--;
}
}
int answer = count1 + count2;
cout << answer;
}
아주 쉽게 풀엇다.
기무링, 이제 set vector 어느정도 쓸줄 알겟다!
아무튼 문제 해석을 하자면, 제한시간이 2초기 때문에 최대한 빠른 탐색을 위해서 set 자료구조를 사용하여 find에서 2분탐색을 하게 하였다.
반응형
'알고리즘 > 백준' 카테고리의 다른 글
(백준 9012 c++) 괄호 (0) | 2022.07.05 |
---|---|
(백준 1764) 듣보잡 (0) | 2022.06.29 |
(백준 14425) 문자열 집합 (0) | 2022.06.27 |
(백준 10815) 숫자 카드 (0) | 2022.06.26 |
(백준 10814) 나이순 정렬 (0) | 2022.06.25 |