티스토리 뷰

알고리즘/SWEA

[SWEA 1221] GNS

히더 2018. 8. 10. 16:33

출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14jJh6ACYCFAYD


#include <iostream>

#include <algorithm>

#include <memory.h>

#include <string>

using namespace std;


int N,result;

char arr[10][4] = { "ZRO","ONE","TWO","THR","FOR","FIV","SIX","SVN","EGT","NIN" };

int cnt[10];


int main()

{

int T; int t = 1; string tt;

cin >> T;

while (T--)

{

cin >> tt; cin >> N;

for (int i = 0; i < N;i++)

{

char tmp[4]; cin >> tmp;

for (int j = 0; j < 10; j++)

if (!strcmp(tmp, arr[j])) {

cnt[j]++;

break;

}

}



cout << "#" << t++ << " ";

for (int j = 0; j < 10; j++) {

while (cnt[j] != 0) {

cout << arr[j] << " ";

cnt[j]--;

}

}


}


return 0;

}


'알고리즘 > SWEA' 카테고리의 다른 글

[SWEA 1223] 계산기2  (0) 2018.08.10
[SWEA 1222] 계산기1  (0) 2018.08.10
[SWEA 1220] Magnetic  (0) 2018.08.10
[SWEA 1219] 길찾기  (0) 2018.08.10
[SWEA 1218] 괄호 짝짓기  (0) 2018.08.10
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
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 31
글 보관함