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
- 유니온 파인드
- 다이나믹 프로그래밍
- 백트래킹
- 우선순위 큐
- VR
- 문자열
- 백준
- 정렬
- 유니티
- DFS
- 시뮬레이션
- 브루트포스
- 수학
- c++
- 다익스트라
- 그래프
- Unreal Engine 5
- Team Fortress 2
- 트리
- 투 포인터
- 스택
- 자료구조
- BFS
- XR Interaction Toolkit
- 재귀
- 알고리즘
- 구현
- ue5
- 그리디 알고리즘
- 누적 합
Archives
- Today
- Total
1일1알
백준 1911번 흙길 보수하기 C++ 본문
https://www.acmicpc.net/problem/1911
우선 웅덩이를 오름차순으로 정렬하고
지금까지 설치한 널빤지의 위치가 웅덩이의 시작지점보다 앞에 있으면 웅덩이의 시작지점부터 다시 설치하고
웅덩아의 시작지점이거나 뒤에 있으면 뒤에 이어서 설치한다.
#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, l;
vector<pair<int, int>> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> l;
v = vector<pair<int, int>>(n);
for (int i = 0; i < n; i++) {
int s, e;
cin >> s >> e;
v[i] = { s,e };
}
sort(v.begin(), v.end());
int curr = 0;
int ans = 0;
for (int i = 0; i < n; i++) {
if (curr < v[i].first) curr = v[i].first;
while (curr < v[i].second) {
curr += l;
ans++;
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 21921번 블로그 C++ (0) | 2023.02.11 |
---|---|
백준 2194번 유닛 이동시키기 C++ (0) | 2023.02.09 |
백준 2258번 정육점 C++ (0) | 2023.02.07 |
백준 1735번 분수 합 C++ (0) | 2023.02.06 |
백준 14494번 다이나믹이 뭐에요? C++ (0) | 2023.02.05 |