티스토리 뷰
백준 소스코드 [C++] 3020 개똥벌레
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define pli pair<ll, int>
#define make_unique(v) sort(all(v)), v.erase(unique(all(v), v.end())
typedef long long ll;
using namespace std;
vector<int> ground, sky;
int n, m;
int obstacleNumber = INT_MAX, obstacleCount, cnt = 0;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
ground.resize(n/2);
sky.resize(n/2);
for (int i = 0; i < n/2; i++) cin >> ground[i] >> sky[i];
sort(all(ground));
sort(all(sky));
for (int i = 1; i <= m; i++) {
obstacleCount = -((lower_bound(all(ground), i ) - ground.end()) + (lower_bound(all(sky), m+1-i ) - sky.end()));
if (obstacleNumber == obstacleCount) cnt++;
else if (obstacleNumber > obstacleCount) {
obstacleNumber = obstacleCount;
cnt = 1;
}
}
cout << obstacleNumber << " " << cnt << '\n';
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 17070 파이프 옮기기 1 (0) | 2021.06.06 |
---|---|
백준 소스코드 [C++] 16637 괄호 추가하기 (0) | 2021.06.04 |
백준 소스코드 [C++] 14003 가장 긴 증가하는 부분 수열 5 (0) | 2021.04.16 |
백준 소스코드 [C++] 1761 정점들의 거리 (0) | 2021.04.16 |
백준 소스코드 [C++] 2150 Strongly Connected Component (0) | 2021.04.15 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- IOS
- 최단경로문제
- 네트워크 유량
- HIG
- CompositionalLayout
- 최단경로 문제
- WWDC17
- WWDC21
- Testable
- mach-o
- 다익스트라 시간복잡도
- 벨만포드 알고리즘
- 강한 순환 참조
- test coverage
- 컴퓨터 추상화
- 에드몬드 카프 알고리즘
- observeOn
- MeTal
- 네트워크 플로우
- 최단경로 알고리즘
- CPU와 Memory
- 최대 매칭
- State Restoration
- rxswift
- WWDC19
- 포드 풀커슨 알고리즘
- 부스트캠프 6기
- 코딩대회
- WWDC16
- 벨만포드 시간복잡도
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함