本文主要是介绍Educational Codeforces Round 48 (Rated for Div. 2)A. Death Note(思维),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接:http://codeforces.com/problemset/problem/1016/A
题意:给你一个笔记本,笔记本上一页可以写m个名字,n代表n天,第二行n个数字代表每天写的名字个数(一页写不完就翻页),输出每一天翻页的次数。如果刚好写完一页翻页次数也要+1。
思路:把不够一页的名字用tmp记录,然后加上每一天要写的名字,答案就是tmp/m。
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e5+10;
int n, m, tmp, x;
int main()
{cin >> n >> m;for(int i = 0; i < n; i++){cin >> x;tmp += x;printf("%d ", tmp/m);tmp %= m;}return 0;
}
这篇关于Educational Codeforces Round 48 (Rated for Div. 2)A. Death Note(思维)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!