일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 알고리즘
- 크루스칼
- 2023
- 미래는_현재와_과거로
- 이분 탐색
- 백트래킹
- 조합론
- 너비 우선 탐색
- dropout
- tensorflow
- 가끔은_말로
- c++
- 문자열
- pytorch
- 분할 정복
- 가끔은 말로
- dfs
- back propagation
- 회고록
- 플로이드 와샬
- NEXT
- lazy propagation
- 다익스트라
- 우선 순위 큐
- 자바스크립트
- object detection
- BFS
- Overfitting
- 세그먼트 트리
- DP
Archives
- Today
- Total
Doby's Lab
백준 1181번: 단어 정렬 (Python, C++) 본문
https://www.acmicpc.net/problem/1181
Level: Silver V
Solved By: Sort
파이썬에서 다중 조건에 대해 정렬하는 방법은 A라는 상위 조건과 B라는 하위 조건이 있으면, B로 먼저 정렬을 한 후에 A로 정렬을 합니다. (Ref. https://velog.io/@1204jh/1181)
또한, 중복 값들을 없애주어야 하기 때문에 입력받은 리스트를 set으로 한 번 전환하여 중복 값들을 버린 후에 리스트로 다시 담아 정렬을 합니다.
상위 조건과 하위 조건에 대해 궁금해서 C++로도 파이썬 코드 밑에 풀어보았습니다.
-> 파이썬과 똑같음, 애초에 논리적으로 접근했을 때, 저 말이 맞음
n = int(input())
li = []
for i in range(0, n):
a = input()
li.append(a)
set_li = set(li)
li = list(set_li)
li.sort()
li.sort(key=len)
for a in li:
print(a)
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<string> v;
bool cmp(string a, string b){
if(a.length() == b.length()) return a < b; // 하위 조건
else return a.length() < b.length(); // 상위 조건
}
int main(){
int N; cin >> N;
for(int i = 0; i < N; i++){
string a; cin >> a;
v.push_back(a);
}
sort(v.begin(), v.end(), cmp);
v.erase(unique(v.begin(), v.end()), v.end());
for(auto a : v){
cout << a << '\n';
}
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
백준 1182번: 부분수열의 합 (Python) (0) | 2023.08.26 |
---|---|
백준 1920번: 수 찾기 (Python, C++) (0) | 2023.08.17 |
백준 1874번: 스택 수열 (Python) (0) | 2023.07.30 |
백준 1021번: 회전하는 큐 (Python) (0) | 2023.07.30 |
백준 1051번: 숫자 정사각형 (Python) (0) | 2023.07.25 |