이전에 풀었던 문제인 것 같은데 안 풀었네??
먼저 색깔별로 저장하는 배열을 만들어 두고 색깔별로 위치를 입력 받는다.
그다음 최소 길이를 구해야 하므로 각 배열을 정렬한 다음 최소 길이를 구하는 방식으로 구현했다.
그리고 점이 하나인 경우는 화살표를 만들 수 없으므로 패스하면 끝~!
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <cstring>
#include <bitset>
#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
using iii = tuple<int, int, int>;
int main()
{
int n;
scanf("%d", &n);
vector<int> v[5005];
for (int i = 0; i < n; i++)
{
int x, y;
scanf("%d %d", &x, &y);
v[y].push_back(x);
}
i64 ans = 0;
for (int i = 0; i < 5005; i++)
{
sort(all(v[i]));
if (v[i].size() == 1)
continue;
for (int j = 0; j < v[i].size(); j++)
{
int a = 100009, b = 100009;
if (j != 0)
a = v[i][j] - v[i][j - 1];
if (j != v[i].size() - 1)
b = v[i][j + 1] - v[i][j];
ans += min(a, b);
}
}
printf("%lld\n", ans);
return 0;
}
'백준' 카테고리의 다른 글
1758 알바생 강호 (0) | 2020.12.11 |
---|---|
20125 쿠키의 신체 측정 (0) | 2020.12.11 |
1927 최소 힙 (0) | 2020.12.05 |
2607 비슷한 단어 (0) | 2020.12.01 |
11660 구간 합 구하기 5 (0) | 2020.11.24 |