BOJ 11328 strfry c++

Algorithm / / 2020. 8. 14. 20:45

BOJ 11328 strfry c++

백준 11328 strfrya c++


#include <bits/stdc++.h>
using namespace std;

int testCaseCount;
string tempLine;

void solve(string tempLine, int arr[]) {
    for (char c: tempLine) 
        arr[c] -= 1;

    int len = tempLine.size();
    for (int i = 0; i < 150; i++) {
        if (arr[i] != 0) {
            cout << "Impossible" << '\n';
            return ;
        }
    }
    cout << "Possible" << '\n';
}

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

    cin >> testCaseCount;
    while (testCaseCount--) {
        int arr[150] = {};
        cin >> tempLine;
        for (char c: tempLine) {
            arr[c]++;
        }
        cin >> tempLine;
        solve(tempLine, arr);
    }
}

'Algorithm' 카테고리의 다른 글

BOJ 1919 에너그램 만들기 c++  (0) 2020.08.15
BOJ 13300 방 배정 c++  (0) 2020.08.14
BOJ 2577 숫자의 개수 c++  (0) 2020.08.14
BOJ 10807 개수 세기 c++  (0) 2020.08.14
BOJ 1406 c++ 에디터  (0) 2020.07.27
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기
// custom