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
- 다익스트라
- 정렬
- 브루트포스
- 재귀
- c++
- 스택
- Unreal Engine 5
- VR
- DFS
- 구현
- 수학
- 백트래킹
- 다이나믹 프로그래밍
- 투 포인터
- 유니티
- ue5
- 트리
- 백준
- BFS
- XR Interaction Toolkit
- 유니온 파인드
- 그리디 알고리즘
- 알고리즘
- 시뮬레이션
- 우선순위 큐
- 누적 합
- 문자열
- Team Fortress 2
- 자료구조
- 그래프
Archives
- Today
- Total
1일1알
Judge - 1234 : 서로 다른 단어 하지만 우리는 하나 C++ 본문
모든 문자열들의 하나하나의 문자들을 map에 넣어서 알파벳의 개수를 저장한다.
map을 순회하면서 알파벳의 개수가 n으로 나누어떨어지지 않는다면 모두 같은 단어로 만들 수 없다.
#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 main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
map<char, int> mp;
for (int i = 0; i < n; i++) {
string str;
cin >> str;
for (int j = 0; j < str.length(); j++) {
mp[str[j]]++;
}
}
bool ans = true;
for (auto a : mp) {
if (a.second % n != 0) {
ans = false;
break;
}
}
if (ans) {
cout << "true";
}
else {
cout << "false";
}
}
'알고리즘' 카테고리의 다른 글
Judge - 1170 : 크리스마스의 요정 C++ (0) | 2022.07.14 |
---|---|
Judge - 1237 : 2보 전진을 위한 1보 후퇴 C++ (0) | 2022.07.13 |
백준 20040번 사이클 게임 C++ (0) | 2022.07.12 |
백준 4386번 별자리 만들기 C++ (0) | 2022.07.10 |
백준 1647번 도시 분할 계획 C++ (0) | 2022.07.09 |