码迷,mamicode.com
首页 > 其他好文 > 详细

450A - Jzzhu and Children 找规律也可以模拟

时间:2014-07-21 23:29:23      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:blog   os   2014   io   for   re   

挺水的一道题,规律性很强,在数组中找出最大的数max,用max/m计算出倍数t,然后再把数组中的书都减去t*m,之后就把数组从后遍历找出第一个大于零的就行了

#include<iostream>
#include<stdio.h>
using namespace std;
int main(){
 //   freopen("in.txt","r",stdin);
    int a[105],n,m;
    while(~scanf("%d%d",&n,&m)){
        int max=0;
        for(int i=0;i<n;i++){
            scanf("%d",&a[i]);
            if(a[i]>max) max=a[i];
        }
        int t=max/m;
        if(max%m==0) t--;
        for(int i=0;i<n;i++){
            a[i]-=t*m;
        }
        int ans=-1;
        for(int i=n-1;i>=0;i--){
            if(a[i]>0){
                ans=i;
                break;
            }
        }
        if(t==0)
            cout<<n<<endl;
        else
            cout<<ans+1<<endl;
    }
}

450A - Jzzhu and Children 找规律也可以模拟,布布扣,bubuko.com

450A - Jzzhu and Children 找规律也可以模拟

标签:blog   os   2014   io   for   re   

原文地址:http://blog.csdn.net/youngyangyang04/article/details/38022881

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!