加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Codechef Nuclear Reactors 题解

发布时间:2020-12-15 04:55:15 所属栏目:百科 来源:网络整理
导读:There are K nuclear reactor chambers labelled from 0 to K-1. Particles are bombarded onto chamber 0. The particles keep collecting in the chamber 0. However if at any time,there are more than N particles in a chamber,a reaction will cause

There are K nuclear reactor chambers labelled from 0 to K-1. Particles are bombarded onto chamber 0. The particles keep collecting in the chamber 0. However if at any time,there are more than N particles in a chamber,a reaction will cause 1 particle to move to the immediate next chamber(if current chamber is 0,then to chamber number 1),and all the particles in the current chamber will be be destroyed and same continues till no chamber has number of particles greater than N. Given K,N and the total number of particles bombarded (A),find the final distribution of particles in the K chambers. Particles are bombarded one at a time. After one particle is bombarded,the set of reactions,as described,take place. After all reactions are over,the next particle is bombarded. If a particle is going out from the last chamber,it has nowhere to go and is lost.

Input

The input will consist of one line containing three numbers A,N and K separated by spaces.
A will be between 0 and 1000000000 inclusive.
N will be between 0 and 100 inclusive.
K will be between 1 and 100 inclusive.
All chambers start off with zero particles initially.

Output

Consists of K numbers on one line followed by a newline. The first number is the number of particles in chamber 0,the second number is the number of particles in chamber 1 and so on.

Example

Input:
3 1 3
Output:
1 1 0

找出规律就好办,利用规律解决问题,而不是模拟过程。

#pragma once
#include <vector>
#include <string>
#include <algorithm>
#include <stack>
#include <stdio.h>
#include <iostream>
using namespace std;

int NuclearReactors()
{
	int A,N,K;
	cin>>A>>N>>K;
	N++;
	int *tbl = new int[K];
	int t = A;
	for (int i = 0; i < K; i++)
	{
		tbl[i] = t % N;
		t /= N;
	}
	for (int i = 0; i < K; i++)
	{
		printf("%d ",tbl[i]);
	}
	printf("n");
	delete [] tbl;
	return 0;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读