JOI2008予選 A - おつり

Calendar Clock iconCalendar Clock icon

atcoder

目次

# 問題

https://atcoder.jp/contests/joi2008yo/tasks/joi2008yo_a

# 入力

N
  • N - 1N9991 \leq N \leq 999を満たす整数です.

# 出力

C

値段がNNである商品を買って1000円を出した時にのおつりのコインの最小枚数を答える問題です.
コインは500, 100, 50, 10, 5, 1の6枚です.

# 入出力例

380
4

おつりは1000380=6201000 - 380 = 620なので、500円1枚、100円1枚、10円2枚が最小です.

# 解説

大きい方から好きなだけ使って良い問題なので典型的な貪欲法の問題です.
コインの大きい方から順に使えるだけ使いましょう.
使った分だけおつりから引いていき、枚数をカウントしていけば良いです.

# 計算量

コインの枚数が6枚でそれぞれ1回ずつ計算します.
入力値NNに関わらないので定数時間です.

O(1)O(1)

# 解答

// C++ 14
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <unordered_map>
#include <math.h>

#define ll long long
#define Int int
#define loop(x, start, end) for(Int x = start; x < end; x++)
#define loopdown(x, start, end) for(int x = start; x > end; x--)
#define rep(n) for(int x = 0; x < n; x++)
#define span(a,x,y) a.begin()+x,a.begin()+y
#define span_all(a) a.begin(),a.end()
#define len(x) (x.size())
#define last(x) (*(x.end()-1))

using namespace std;
Int N;
vector<Int> coins({ 500, 100, 50, 10, 5, 1});

void input() {
  cin >> N;
  N = 1000 - N;
}

void solve() {
  Int count = 0;
  for (auto c: coins) {
    if (N >= c) {
      count += N / c;
      N = N % c;
    }
  }
  cout << count << endl;
}

int main() {
  input();
  solve();
  return 0;
}

リモートフリーランス。ウェブサービス、スマホアプリエンジニア。
東アジアを拠点に世界を移動しながら活動してます!

お仕事のご依頼・お問い合わせはこちら

コメント