BOJ / 11651번 / 좌표 정렬하기 2 [Go]
👩🏻💻 문제 11651번: 좌표 정렬하기 2 첫째 줄에 점의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개의 줄에는 i번점의 위치 xi와 yi가 주어진다. (-100,000 ≤ xi, yi ≤ 100,000) 좌표는 항상 정수이고, 위치가 같은 두 점은 없다. www.acmicpc.net ✍🏻 풀이 🎨 Go package main import ( "bufio" "fmt" "os" "sort" ) type coordinate struct { x int y int } func main() { var n int reader := bufio.NewReader(os.Stdin) fmt.Fscanln(reader, &n) writer := bufio.NewWriter(os.Stdout) ..
dev/algorithm
2020. 7. 14. 22:40