백준 9375 패션왕 신해빈
#include <bits/stdc++.h>
#include<unordered_set>
#include<unordered_map>
using namespace std;
int t;
int cnt[31];
int main() {
ios::sync_with_stdio(0); cin.tie(0);
cin >> t;
while (t--) {
int n;
cin >> n;
unordered_map<string, int> um;
//unordered_map<string, int> umcnt;
int cnt = 0;
while (n--) {
string s1, s2;
cin >> s1 >> s2;
um[s2]++;
}
int ans = 1;
for (auto c : um) ans *= (c.second+1);
cout << ans - 1 << '\n';
}
}
Author And Source
이 문제에 관하여(백준 9375 패션왕 신해빈), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@supway/백준-9375-패션왕-신해빈저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)