A. Jzzhu and Children1000 / 模拟

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Jzzhu and Children1000 / 模拟相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/450/A

#include<bits/stdc++.h>
using namespace std;
int s[105];
queue<int>q;
int main(void)
{
	int n,m,x; cin>>n>>m;
	for(int i=1;i<=n;i++) cin>>s[i],q.push(i);
	while(q.size()>1)
	{
		int temp=q.front(); q.pop();
		if(s[temp]<=m) continue;
		else q.push(temp),s[temp]-=m;
	}
	cout<<q.front();
	return 0;
} 

以上是关于A. Jzzhu and Children1000 / 模拟的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 450B Jzzhu and Sequences

Jzzhu and Sequences (矩阵快速幂 + 取模)

Codeforces 450C:Jzzhu and Chocolate(贪心)

Codeforces 450E:Jzzhu and Apples(构造,数学)

CodeForces 450B Jzzhu and Sequences

CodeForces - 450D Jzzhu and Cities (spfa)