본문 바로가기

알고리즘 · 코딩

[SWEA 8821] 적고 지우기

문제 링크

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AW37UDPKCgQDFATy

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


C++ 풀이

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

int main() {
	string answer = "";
	string input;
	int T, n, temp, start;
	cin >> T;
	for (int i = 1; i <= T; i++) {
		n = 0;
		cin >> input;
		sort(input.begin(), input.end()); //숫자들을 오름차순으로 정렬
		for (int j = 0; j < input.length(); j++) {
			temp = 0;
			start = j;
			while (input[j] == input[start]) {
				temp++;
				j++;
			}
			if (temp % 2 != 0) //같은 수가 홀수  개 있을 경우 카운트 해준다
				n++;
			j--;
		}
		answer += "#" + to_string(i) + " " + to_string(n) + "\n";
	}
	cout << answer;
	return 0;
}

 

 

 

반응형

'알고리즘 · 코딩' 카테고리의 다른 글

[SWEA 4261] 빠른 휴대전화 키패드  (0) 2020.06.04
[SWEA 8658] Summation  (0) 2020.06.03
[SWEA 1861] 정사각형 방  (0) 2020.05.27
[SWEA 7829] 보물왕 태혁  (0) 2020.05.26
[SWEA 4406] 모음이 보이지 않는 사람  (0) 2020.05.26