물문제

4219 단어 HDU
최근에vim로 넘어왔습니다. vim로 코드를 작성하고 gcc로 컴파일하고 gdb로 디버깅합니다.이것은vim로 만든 첫 번째 문제입니다. 기념합니다.제목이 너무 뜨거우니 말하지 않겠다.
/*

 * Author    : ben

 */

#include <cstdio>

#include <cstdlib>

#include <cstring>

#include <cmath>

#include <ctime>

#include <iostream>

#include <algorithm>

#include <queue>

#include <set>

#include <map>

#include <stack>

#include <string>

#include <vector>

#include <deque>

#include <list>

#include <functional>

#include <numeric>

#include <cctype>

using namespace std;



int getB(int a, int b, int A) {

    int B = 0;

    while(A > 0) {

        B += A / a + 1;

        A -= b;

    }

    return B - 1;

}

int main() {

#ifndef ONLINE_JUDGE

    freopen("data.in", "r", stdin);

#endif

    int a, b;

    int A, B;

    while(scanf("%d %d", &a, &b) == 2) {

        if(a > b) {

            a = a ^ b;

            b = a ^ b;

            a = a ^ b;

        }

        A = (a - 1) * (b - 1) - 1;

        B = getB(a, b, A);

        B = A - B;

        printf("%d %d
", A, B); } return 0; }

좋은 웹페이지 즐겨찾기