Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정렬
- 브루트포스
- c++
- 수학
- 구현
- 투 포인터
- 유니티
- 자료구조
- 스택
- 알고리즘
- 트리
- Team Fortress 2
- 우선순위 큐
- 다익스트라
- 백트래킹
- VR
- 유니온 파인드
- BFS
- ue5
- Unreal Engine 5
- 다이나믹 프로그래밍
- 그리디 알고리즘
- 누적 합
- 백준
- XR Interaction Toolkit
- DFS
- 재귀
- 시뮬레이션
- 그래프
- 문자열
Archives
- Today
- Total
1일1알
백준 2012번 등수 매기기 C++ 본문
https://www.acmicpc.net/problem/2012
2012번: 등수 매기기
첫째 줄에 자연수 N이 주어진다. (1 ≤ N ≤ 500,000) 둘째 줄부터 N개의 줄에 걸쳐 각 사람의 예상 등수가 순서대로 주어진다. 예상 등수는 500,000 이하의 자연수이다.
www.acmicpc.net
오름차순 정렬 후 1등부터 차이나는대로 더한다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n;
int64 ans = 0;
vector<int> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<int>(n);
for (int i = 0; i < n; i++) cin >> v[i];
sort(v.begin(), v.end());
for (int i = 0; i < n; i++) {
ans += abs(i + 1 - v[i]);
}
cout << ans;
}