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

 

이번에 볼 문제는 백준 5343번 문제인 Parity Bit이다.
문제는 아래 링크를 확인하자.

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

 

5343번: Parity Bit

A parity bit, or check bit, is a bit that is added to the end of a sequence of bits for error detection. In telecommunications and computing all data is transformed into a sequence of zeros and ones. For this problem you may assume that all information is

www.acmicpc.net

문자열을 8문자씩 끊어읽으며, 앞의 7문자 중 '1'의 개수의 홀짝에 따라 8번째 문자에 알맞은 parity bit가 붙어있는지를 확인하는 것으로 문제를 해결하자.

 

이는 2중 for문을 이용해 간단하게 구현할 수 있다.

 

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

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

int T;
string s; int slen;

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

	cin >> T;
	while (T--) {
		cin >> s; slen = s.length();
		int ans = 0;
		for (int i = 0; i < slen; i+=8) {
			int cnt = 0;
			for (int k = 0; k < 7; k++) {
				if (s[i + k] == '1') cnt++;
			}
			if (((cnt & 1) && s[i + 7] == '0') || (!(cnt & 1) && s[i + 7] == '1')) ans++;
		}

		cout << ans << '\n';
	}
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 5345 // C++] PLU Count  (0) 2022.12.22
[BOJ 6889 // C++] Smile with Similes  (0) 2022.12.22
[BOJ 6830 // C++] It's Cold Here!  (0) 2022.12.22
[BOJ 4327 // C++] Combination Lock  (0) 2022.12.22
[BOJ 26587 // C++] Reverse  (0) 2022.12.22

+ Recent posts