CafeM0ca

[BOJ]10250번 ACM 호텔 본문

Programming/백준

[BOJ]10250번 ACM 호텔

M0ca 2018. 4. 29. 04:59
반응형

std::array써서 저장하는 방식으로 사용하려 했지만 세로부터 1씩 증가하면서 꼭대기층까지 가면 가로를 1증가시키고 다시 세로를 1씩 증가하면서 n번째가 될때가 n번째 손님이니 출력했다.


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
#include <iostream>
using namespace std;
 
int main()
{
    cin.sync_with_stdio(false);
    cin.tie(NULL);
    int h,w,n,t;
    cin >> t;
    for(int repeat=0;repeat<t;repeat++){
        cin >> h >> w >> n;
        int cnt = 1;
        for(int i=1;i<=w;i++){
            for(int j=1;j<=h;j++,cnt++){
                if(cnt == n){
                    if(i < 10){
                        cout << j << "0" << i << endl;
                    } else{
                        cout << j << i << endl;
                    }    
                } 
            }
        }
 
    }
    return 0;
}
 
cs


반응형
Comments