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
- Spring
- 제프리리처
- redis
- inflearn
- Operating System
- OS
- 스프링 핵심 원리
- 우아한레디스
- 토마토
- 우아한 테크 세미나
- C#
- Window-Via-c/c++
- Four Squares
- 윤성우 저자
- BOJ
- 열혈 tcp/ip 프로그래밍
- 스프링 입문
- C++
- Operating System.
- 열혈 TCP/IP 소켓 프로그래밍
- HTTP
- 김영한
- 2475번
- n타일링2
- TCP/IP
- 에러핸들링
- 운영체제
- 10026번
- FIFO paging
- 이펙티브코틀린
Archives
- Today
- Total
나의 브을로오그으
[c++] 1181번 : 단어 정렬 본문
https://www.acmicpc.net/problem/1181
#include <iostream>
#include <set>
#include <string>
using namespace std;
struct compare {
bool operator() (const string& w1, const string& w2) const
{
if (w1.size() == w2.size())
{
return w1 < w2;
}
else
return w1.size() < w2.size();
}
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int n = 0;
cin >> n;
string word = "";
set<string, compare> words;
// input
for (int i = 0; i < n; ++i)
{
cin >> word;
words.insert(word);
}
set<string>::iterator iter;
set<string>::iterator iterEnd = words.cend();
for (iter = words.cbegin(); iter != iterEnd; ++iter)
{
cout << *iter << '\n';
}
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1436번 : 영화감독 숌 (0) | 2022.03.22 |
---|---|
[c++] 1259번 : 팰린드롬 수 (0) | 2022.03.22 |
[c++] 1085번 : 직사각형에서 탈출 (0) | 2022.03.15 |
[c++] 1018번 : 체스판 다시 칠하기 (0) | 2022.03.15 |
[c++] 11720번 : 숫자의 합 (0) | 2022.03.12 |