-
알고리즘: 백준 1015번 수열 정렬 (feat.python)알고리즘/백준(BaekJoon) 2020. 12. 30. 19:35
import sys input = sys.stdin.readline n = int(input()) getA = list(map(int, input().split())) listA = list() for i in range(n): listA.append([i, getA[i]]) listA = sorted(listA, key=lambda x:x[1]) for i in range(n): listA[i][1] = i listA = sorted(listA, key=lambda x:x[0]) for i in range(n): print(listA[i][1], end=" ")
반응형'알고리즘 > 백준(BaekJoon)' 카테고리의 다른 글
알고리즘: 백준 7576번 토마토 (feat.python) (0) 2021.01.06 알고리즘: 백준 2606번 바이러스 (feat.python) (0) 2021.01.04 알고리즘: 백준 1002번 터렛 (feat. python) (0) 2020.12.30 알고리즘: 백준 11048번 이동하기 (feat. python) (0) 2020.08.27 알고리즘: 백준 2293번 동전 1 (feat. python) (0) 2020.08.25