[C++] AtCoder Beginner Contest 196

AtCoder Beginner Contest 196

결과

submission rating

Rating : 616 -> 701 (+85)

풀이

A

A - Difference Max

a <= x <= b 이고 c <= y <= d 일때 x-y의 최대값을 찾아야 하므로 b - c 를 출력하면 된다.

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc196/tasks/abc196_a
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll a,b,c,d;
    cin >> a >> b >> c >> d;
    cout << b - c;

    return 0;
}
B

B - Round Down

소수를 입력받아 소수점 이하를 버리고 정수부분만 출력하는 문제

본인은 string으로 받아서 다시 출력하다가 소수점이 나오면 종료하는 방법으로 구현하였다.

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc196/tasks/abc196_b
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    string s;
    cin >> s;
    for(auto k : s){
        if(k == '.') break;
        cout << k;
    }

    return 0;
}
C

C - Doubled

1부터 N까지의 수 중 짝수자리이고 앞의 절반과 뒤의 절반의 수가 동일한 수는 몇개가 있는지 찾는 문제

1부터 하나씩 증가해 가면서 해당 수를 두번 반복햇을 때 그 수가 N보다 작으면 계속 진행한다.

그렇게 N보다 커질때까지 계속 수행하면 조건에 맞는 모든 수의 갯수를 찾을 수 있다.

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc196/tasks/abc196_c
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll n;
    cin >> n;
    ll ans = 0;
    for(int i = 1;;i++){
        string str = to_string(i);
        str += str;
        ll temp = stol(str);
        if(temp <= n) ans++;
        else break;    
    }
    cout << ans;

    return 0;
}

[C++] AtCoder Beginner Contest 195 C번 Comma

AtCoder Beginner Contest 195 C번 Comma

문제

https://atcoder.jp/contests/abc195/tasks/abc195_c abc195_c

풀이

N보다 낮은 자리수의 컴마의 갯수를 싹다 더하고

N과 같은 자리수에 컴마의 갯수를 더해주는 방법으로 구현했다.

근데 N <= 10^15 이므로 이걸 for문을 N번돌면서 하면 안된다…

코드

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc195/tasks/abc195_c
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll n;
    cin >> n;
    ll ans = 0;
    ll temp = 0;
    for(int i = 0;temp <= n;i++){
        ll prevTemp = temp;
        temp = temp * 10 + 9;
        if(temp <= n){
            ans += (i/3) * (temp - prevTemp);
        }
        else{
            ans += (i/3) * (n - prevTemp);
        }
    }
    cout << ans;

    return 0;
}

[C++] AtCoder Beginner Contest 195 B번 Many Oranges

AtCoder Beginner Contest 195 B번 Many Oranges

문제

https://atcoder.jp/contests/abc195/tasks/abc195_b abc195_b

풀이

오렌지의 합이 총 W 킬로그램이어야 한다고 할 떄, 오렌지가 N개 필요하다고 가정한다면

AN <= 1000W <= BN 이 성립한다면 오렌지 N개를 사용해서 W 킬로그램을 정확하게 맞출 수 있을것이다.

또한 그 N의 최소, 최대값은 오렌지의 무게의 범위인 A, B 그램으로 나누면 나올것이다.

그 최소, 최대값이 AN <= 1000W <= BN의 범위에 포함이 되는지 안되는지 확인하고 포함되면 해당 최소, 최대값을 그대로 출력

범위를 벗어난다면 UNSATISFIABLE를 출력하면 정답

코드

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc195/tasks/abc195_b
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll a, b, w;
    cin >> a >> b >> w;
    w *= 1000;
    bool flag = true;
    ll min = ceill((ld)w / b);
    if (w / min < a) flag = false;
    ll max = w / a;
    if (w / max > b) flag = false;
    if (flag)
        cout << min << " " << max;
    else
        cout << "UNSATISFIABLE";

    return 0;
}

[C++] AtCoder Beginner Contest 195 A번 Health M Death

AtCoder Beginner Contest 195 A번 Health M Death

문제

https://atcoder.jp/contests/abc195/tasks/abc195_a abc195_a

풀이

H가 M의 배수인지 아닌지 확인하면 되는 문제

나머지가 0이면 Yes 아니면 No 출력

코드

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc195/tasks/abc195_a
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    ll m,h;
    cin >> m >> h;
    bool isAnswer = false;
    if(h % m == 0){
        isAnswer = true;
    }
    else isAnswer = false;
    if(isAnswer) cout << "Yes";
    else cout << "No";

    return 0;
}

[C++] AtCoder Beginner Contest 193 D번 Poker

AtCoder Beginner Contest 193 D번 Poker

문제

https://atcoder.jp/contests/abc193/tasks/abc193_d abc193_d

풀이

1부터 9까지 카드뭉치가 K개가 있다.

타카하시와 아오키가 이 카드뭉치들로 포커를 친다.

양 플레이어는 4장의 카드는 오픈한 상태 한장은 히든이다.

여기서 타카하시의 승률을 계산하는 문제

히든이 양 플레이어 통틀어 2칸이 있으니 1~9까지 가능한 모든 경우를 계산하여 타카하시가 이길때마다 그 확률을 더해서 총 합을 구한다.

코드

#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc193/tasks/abc193_d
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
 
    ll k;
    cin >> k;
    string s, t1;
    cin >> s >> t1;
    ll num[10] = {};
    rep(i, 10) num[i] = k;
    rep(i, 4) {
        ll a = s[i] - '0';
        ll b = t1[i] - '0';
        --num[a];
        --num[b];
    }
    vll t(10, 0), a(10, 0);
    rep(k, 4) {
        t[s[k] - '0']++;
        a[t1[k] - '0']++;
    }
    ld ans = 0;
    for (ll i = 1; i <= 9; i++) {
        auto ti = t;
        ti[i]++;
        ll sc_t = 0;
        for (ll l = 1; l <= 9; l++) {
            sc_t += l * pow(10, ti[l]);
        }
        for (ll j = 1; j <= 9; j++) {
            vll aj = a;
            aj[j]++;
            if (ti[i] + aj[i] > k) continue;
            if (ti[j] + aj[j] > k) continue;
            ll sc_a = 0;
            for (ll l = 1; l <= 9; l++) {
                sc_a += l * pow(10, aj[l]);
            }
            ld ch1 = num[i];
            ld ch2 = num[j];
            if (i == j) ch2--;
            if (sc_t > sc_a) ans += ch1 / (9 * k - 8) * ch2 / (9 * k - 9);
        }
    }
    cout << fixed;
    cout.precision(10);
    cout << ans;
    return 0;
}