BOJ 11650座標の整列
3006 ワード
https://www.acmicpc.net/problem/11650
1秒、256 MBメモリ
input : N (1 ≤ N ≤ 100,000) i号店の位置:西邑(-1000≦xi,yi≦100000) output :
出力点のソート結果 条件: x昇順、y昇順 Ramda関数で並べ替えましょう
1秒、256 MBメモリ
input :
出力
import sys
n = int(sys.stdin.readline())
position = []
for i in range(n):
x, y = map(int, sys.stdin.readline().split())
position.append((x, y))
position = sorted(position, key=lambda x : (x[0], x[1]))
for item in position:
print(*item)
Reference
この問題について(BOJ 11650座標の整列), 我々は、より多くの情報をここで見つけました https://velog.io/@jsin2475/BOJ-11650-좌표-정렬하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol