首页 > 代码库 > 450A - Jzzhu and Children 找规律也可以模拟
450A - Jzzhu and Children 找规律也可以模拟
挺水的一道题,规律性很强,在数组中找出最大的数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; } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。