728x90

 0. [c++] 백준  - 


https://www.acmicpc.net/problem/10219


 1. 풀이


1) 이래도 되나 싶을정도로 간단하게 풀었는데, 그냥 오른쪽 왼쪽을 뒤집어주었다.



2) 이후에 도형을 돌리면서 끼워 맞추는 함수를 한번 구현해보자.




 2. 소스코드


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
#include<iostream>
#include<string>
#include<algorithm>        //reverse()
 
using namespace std;
 
string arr[11];
 
void flip(int Y, int X) {
    for (int i = 0; i < Y; i++) {
        reverse(arr[i].begin(),arr[i].end());
        cout << arr[i] << endl;
    }
}
 
int main() {
    int T, H, W;
    cin >> T;
    while (T--) {
        cin >> H >> W;
        for (int y = 0; y < H; y++) {
            cin >> arr[y];
        }
        flip(H,W);
    }
}
cs


 3. 참고




질문이나 지적 있으시면 댓글로 남겨주세요~

도움 되셨으면 하트 꾹!


'<백준> > |c++| easy' 카테고리의 다른 글

[c++] 백준 1992 - 쿼드트리  (0) 2019.04.27
[c++] 백준 1547 - 공(swap)  (0) 2019.04.24
[c++] 백준 1057 - 토너먼트  (0) 2019.04.18
[c++] 백준 1094 - 막대기  (0) 2019.04.17
[c++] 백준 2455 - 지능형 기차  (0) 2019.04.17

+ Recent posts