반응형
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 | 31 |
Tags
- 성적평가
- incr
- 13908
- 퇴사통보
- 이분탐색
- 연결요소
- 경력
- 처우협의
- 백트래킹
- boj #19237 #어른 상어
- 파라메트릭
- 처우산정
- BOJ
- msSQL
- BFS
- OFFSET
- dfs
- 매개변수탐색
- 물채우기
- 백준
- compose
- Docker
- 6987
- @P0
- upper_bound
- 기술면접
- Kafka
- 소프티어
- softeer
- 오퍼레터
Archives
- Today
- Total
기술 블로그
1181번 단어 정렬 본문
728x90
반응형
https://www.acmicpc.net/problem/1181
C++의 map을 이용하였다.
자동으로 중복 제거 및 정렬을 해주기 때문이다.
위에서 말한 '중복 제거'라는 것은
map은 Key의 중복을 불허하기 때문에
Key값을 string으로 해주었다.
즉, string으로 해주면 다시 추가될 일이 없기 때문이다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; int N = 0; map<string, bool> m[55]; // map<문자열, 사용 안 함> m[문자열 길이]; int main(void) { string s; scanf("%d", &N); for (int i = 0; i < N; i++) { cin >> s; m[s.length()].insert({ s, false }); } for (int i = 1; i <= 50; i++) { if (m[i].empty()) continue; auto itr = m[i].begin(); while (itr != m[i].end()) { cout << itr->first << '\n'; ++itr; } } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
16985번 Maaaaaaaaaze (0) | 2019.03.25 |
---|---|
13414번 수강신청 (0) | 2019.03.23 |
16931번 겉넓이 구하기 (0) | 2019.03.21 |
16930번 달리기 (0) | 2019.03.21 |
16929번 Two Dots (0) | 2019.03.21 |