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 |
Tags
- Protocol
- widgetkit
- 알고리즘
- 운영체제
- Swift
- 스유
- 스위프트
- 네트워크
- widget
- 1일1알골
- dispatchqueue
- composable architecture
- uikit
- 컴퓨터그래픽스
- 대외활동
- 문법
- 멋사
- spritekit
- 웹
- 리액트
- cs
- c++
- 후기
- 위젯킷
- swift concurrency
- 백준
- SwiftUI
- 영남대
- TCA
- 멋쟁이사자처럼
Archives
- Today
- Total
목록alogirthm (1)
맛동산이
(백준 1269) 대칭 차집합
문제 https://www.acmicpc.net/problem/1269 1269번: 대칭 차집합 첫째 줄에 집합 A의 원소의 개수와 집합 B의 원소의 개수가 빈 칸을 사이에 두고 주어진다. 둘째 줄에는 집합 A의 모든 원소가, 셋째 줄에는 집합 B의 모든 원소가 빈 칸을 사이에 두고 각각 주어 www.acmicpc.net 정답코드 #include #include #include #include #include using namespace std; // 3 5 // 1 2 4 // 2 3 4 5 6 int main() { int n, m; cin >> n >> m; set arr1; set arr2; vector ar1; vector ar2; int num1, num2; int count1, count2;..
알고리즘/백준
2022. 6. 29. 16:36