※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 5940번 문제인 Math Practice이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/5940 

 

5940번: Math Practice

One lovely afternoon, Bessie's friend Heidi was helping Bessie review for her upcoming math exam. Heidi presents two integers A (0 <= A <= 45) and B (1 <= B <= 9) to Bessie who must respond with an integer E in the range 1..62. E is the smallest integer in

www.acmicpc.net

\(A\)보다 크고 63보다 작은 정수 \(E\) 중 \(2^E\)의 첫 번째(가장 큰) 자릿수가 \(B\)인 가장 작은 \(E\)를 구하는 문제이다.

 

가능한 E의 후보가 충분히 적으므로, 반복문과 to_string을 이용해 모든 가능한 정수 후보를 (오름차순으로) 직접 살펴나가는 것으로 문제를 해결하자.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <string>
using namespace std;
typedef long long ll;

int A; char B;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> A >> B; A++;
	for (ll x = (1LL << A); A < 63; x <<= 1, A++) {
		string cur = to_string(x);
		if (cur.front() == B) {
			cout << A;
			return 0;
		}
	}

	cout << 0;
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 17042 // C++] Elder  (0) 2023.01.05
[BOJ 11295 // C++] Exercising  (0) 2023.01.05
[BOJ 7682 // C++] 틱택토  (0) 2023.01.04
[BOJ 5939 // C++] Race Results  (0) 2023.01.04
[BOJ 27101 // C++] Metric Matrices  (0) 2023.01.04

※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 5939번 문제인 Race Results이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/5939 

 

5939번: Race Results

The herd has run its first marathon!  The N (1 <= N <= 5,000) times have been posted in the form of Hours (0 <= Hours <= 99), Minutes (0 <= Minutes <= 59), and Seconds (0 <= Seconds <= 59). Bessie must sort them (by Hours, Minutes, and Seconds) into ascen

www.acmicpc.net

주어지는 시간들을 오름차순으로 정렬해 다시 출력해주는 문제이다.

 

HH MM SS 꼴의 입력을 HHMMSS와 같이 이어쓴 정수의 형태로 저장해준 다음, 정렬 뒤 원래의 형태대로 출력해주는 것으로 문제를 해결할 수 있다.

 

각 시간, 분, 초를 출력할 것을 요구하지 두자리를 항상 채워 출력할 것을 요구하지는 않음에 유의하자.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <algorithm>
using namespace std;

int N;
int arr[5000];

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> N;
	for (int i = 0; i < N; i++) {
		int a, b, c; cin >> a >> b >> c;
		arr[i] = a * 10000 + b * 100 + c;
	}

	sort(arr, arr + N);

	for (int i = 0; i < N; i++) {
		cout << arr[i] / 10000 << ' ' << (arr[i] % 10000) / 100 << ' ' << arr[i] % 100 << '\n';
	}
}

 

728x90

'BOJ' 카테고리의 다른 글

[BOJ 5940 // C++] Math Practice  (0) 2023.01.04
[BOJ 7682 // C++] 틱택토  (0) 2023.01.04
[BOJ 27101 // C++] Metric Matrices  (0) 2023.01.04
[BOJ 5938 // C++] Daisy Chains in the Field  (0) 2023.01.04
[BOJ 27106 // C++] Making Change  (0) 2023.01.03

※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 5938번 문제인 Daisy Chains in the Field이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/5938 

 

5938번: Daisy Chains in the Field

Farmer John let his N (1 <= N <= 250) cows conveniently numbered 1..N play in the field. The cows decided to connect with each other using cow-ropes, creating M (1 <= M <= N*(N-1)/2) pairwise connections. Of course, no two cows had more than one rope direc

www.acmicpc.net

주어지는 소와 줄을 각각 노드와 에지로 생각해 그래프로 모델링하면 주어진 문제는 1번 소가 포함된 connected component에 속하지 않은 소의 번호들을 출력(그러한 소가 없다면 0을 출력)하는 문제로 바꿔 생각할 수 있다.

 

DFS, BFS등의 그래프 탐색 알고리즘을 이용해 문제를 해결해주자.

 

번외로, 소의 마릿수가 충분히 적으므로 더이상의 새로운 연결을 찾을 수 없을 때까지 반복문을 돌면서 기존에 연결된 소와 새로이 연결되는 소가 있는지를 판단하는 O(N^3) 알고리즘 또한 충분히 좋은 해법이 될 것이다.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <vector>
using namespace std;

int N, M;
vector<int> G[251];
bool visited[251];

void dfs(int cur) {
	visited[cur] = 1;
	for (auto& node : G[cur]) {
		if (!visited[node]) dfs(node);
	}
}

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> N >> M;
	while (M--) {
		int x, y; cin >> x >> y;
		G[x].emplace_back(y);
		G[y].emplace_back(x);
	}

	dfs(1);

	bool chk = 0;
	for (int i = 1; i <= N; i++) {
		if (!visited[i]) cout << i << '\n', chk = 1;
	}

	if (!chk) cout << 0;
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 5939 // C++] Race Results  (0) 2023.01.04
[BOJ 27101 // C++] Metric Matrices  (0) 2023.01.04
[BOJ 27106 // C++] Making Change  (0) 2023.01.03
[BOJ 17141 // C++] 연구소 2  (0) 2023.01.03
[BOJ 24198 // C++] Muffinspelet  (0) 2023.01.02

+ Recent posts