<코드>

#include <iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    vector<string> box;
    string input = "";
    while (true) {
        getline(cin, input); //한줄 통채로 입력받기
        if (input == "END") {
            break;
        }
        reverse(input.begin(), input.end()); //코드 뒤집기
        box.push_back(input);
        
    }
    for (int i = 0; i < box.size(); i++) {
        cout << box[i]<<"\n";
    }

}

개인적으로 한줄입력받고 출력받아도 되는데

전부 입력받고 뒤집게 만들어서 조금 더 어렵게 푼거 같네용

 

<코드>

#include <iostream>
#include<string>
using namespace std;


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    int input;
    cin >> input;
    int cnt = 0;
    input = 1000 - input;

    cnt += input / 500;
    input = input % 500;

    cnt += input / 100;
    input = input % 100;

    cnt += input / 50;
    input = input % 50;

    cnt += input / 10;
    input = input % 10;

    cnt += input / 5;
    input = input % 5;

    cnt += input / 1;
    input = input % 1;

    cout << cnt;

}

이정도로 적은 테스트케이스는 개인적으로 그냥 다 써버리는 것도 나쁘지 않다 생각합니다 ㅎㅎ..

 

<코드>

#include <iostream>
#include<string>
using namespace std;


int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    string a, b;
    cin >> a >> b;
    
    //모두 5로 바꾼게 최솟값 모두 6으로 바꾼게 최대값
    for (int i = 0; i < a.length(); i++) {
        if (a[i] == '6') {
            a[i] = '5';
        }
    }
    for (int i = 0; i < a.length(); i++) {
        if (b[i] == '6') {
            b[i] = '5';
        }
    }
    cout << stoi(a) + stoi(b) << ' '; //문자열을 정수로 바꾸는 함수

    for (int i = 0; i < a.length(); i++) {
        if (a[i] == '5') {
            a[i] = '6';
        }
    }
    for (int i = 0; i < a.length(); i++) {
        if (b[i] == '5') {
            b[i] = '6';
        }
    }

    cout << stoi(a) + stoi(b);
}

 

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

 

2864번: 5와 6의 차이

첫째 줄에 두 정수 A와 B가 주어진다. (1 <= A,B <= 1,000,000)

www.acmicpc.net

 

<코드>

#include <cstdio>
#include <algorithm>
#include <queue>
using namespace std;
int a[30][30];
int group[30][30];
int dx[] = {0,0,1,-1};
int dy[] = {1,-1,0,0};
int n;
int ans[25*25];
void bfs(int x, int y, int cnt) {
    queue<pair<int,int>> q;
    q.push(make_pair(x,y));
    group[x][y] = cnt;
    while (!q.empty()) {
        x = q.front().first;
        y = q.front().second;
        q.pop();
        for (int k=0; k<4; k++) {
            int nx = x+dx[k];
            int ny = y+dy[k];
            if (0 <= nx && nx < n && 0 <= ny && ny < n) {
                if (a[nx][ny] == 1 && group[nx][ny] == 0) {
                    q.push(make_pair(nx,ny));
                    group[nx][ny] = cnt;
                }
            }
        }
    }
}
int main() {
    scanf("%d",&n);
    for (int i=0; i<n; i++) {
        for (int j=0; j<n; j++) {
            scanf("%1d",&a[i][j]);
        }
    }
    int cnt = 0;
    for (int i=0; i<n; i++) {
        for (int j=0; j<n; j++) {
            if (a[i][j] == 1 && group[i][j] == 0) {
                bfs(i, j, ++cnt);
            }
        }
    }
    printf("%d\n",cnt);
    for (int i=0; i<n; i++) {
        for (int j=0; j<n; j++) {
            ans[group[i][j]]+=1;
        }
    }
    sort(ans+1, ans+cnt+1);
    for (int i=1; i<=cnt; i++) {
        printf("%d\n",ans[i]);
    }
    return 0;
}

2667번: 단지번호붙이기 (acmicpc.net)

'[백준] > C++' 카테고리의 다른 글

백준16396번 선 그리기 [C++]  (0) 2023.06.25
백준 1316번 그룹 단어 체커 [C++]  (0) 2023.06.25
백준 11365번 !밀비 급일 [C++]  (0) 2023.06.25
백준 5585번 거스름돈 [C++]  (0) 2023.06.25
백준 2865번 5와 6의 차이 [C++]  (0) 2023.06.25

+ Recent posts