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
- 네트워크
- spritekit
- 스위프트
- widget
- uikit
- 문법
- widgetkit
- 멋사
- TCA
- 스유
- composable architecture
- cs
- swift concurrency
- Swift
- Protocol
- 후기
- c++
- 운영체제
- 리액트
- 위젯킷
- 백준
- 웹
- 1일1알골
- 대외활동
- 알고리즘
- 컴퓨터그래픽스
- dispatchqueue
- 멋쟁이사자처럼
- SwiftUI
- 영남대
Archives
- Today
- Total
목록14425 (1)
맛동산이
(백준 14425) 문자열 집합
문제 https://www.acmicpc.net/problem/14425 14425번: 문자열 집합 첫째 줄에 문자열의 개수 N과 M (1 ≤ N ≤ 10,000, 1 ≤ M ≤ 10,000)이 주어진다. 다음 N개의 줄에는 집합 S에 포함되어 있는 문자열들이 주어진다. 다음 M개의 줄에는 검사해야 하는 문자열들이 주어 www.acmicpc.net 코드 첫번째 코드 #include #include #include #include using namespace std; int main() { int n; int m; cin >> n; cin >> m; set arr1; vector arr2(n); string u; int count = 0; for (int a = 0; a > ..
알고리즘/백준
2022. 6. 27. 16:30