알고리즘/BOJ

백준 3047번 ABC

꾸준함. 2018. 12. 1. 23:28

문제 링크입니다: https://www.acmicpc.net/problem/3047


간단한 정렬 문제였습니다.


#include <iostream>

#include <vector>

#include <algorithm>

#include <string>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        vector<int> v(3);

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

                 cin >> v[i];

        sort(v.begin(), v.end());

 

        string s;

        cin >> s;

        for (int i = 0; i < s.length(); i++)

                 cout << v[s[i] - 'A'] << " ";

        cout << "\n";

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

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

백준 2923번 숫자 게임  (0) 2018.12.04
백준 15633번 Fan Death  (0) 2018.12.04
백준 1550번 16진수  (0) 2018.12.01
백준 1212번 8진수 2진수  (0) 2018.12.01
백준 2153번 소수 단어  (0) 2018.11.27