codeforces1073d

Posted mifankai

tags:

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

  和B题一样,也是模拟题,不过这道题我们可以优雅地模拟。

  有一点得说明,那就是写模拟题,题意的理解非常重要,而本题就像绕圈割韭菜,每割一棵韭菜要消耗一定的能量,只要自己的

后备储藏能源足够,就可以割下它,否则就割下一棵(如果下一棵可以割的话,不然又得割下一棵)。粮草未动,代码先行~

c++代码如下:

 

#include<bits/stdc++.h>
using namespace std;
const int M = 2e5 + 5;
using ll = long long;

int a[M];
int main()
{
    int n;
    ll T;
    scanf("%d %lld", &n, &T);
    ll ans = 0;
    for (int i=0; i<n; i++){
        scanf("%d", &a[i]);
    }

    while(true){
        ll cnt = 0, sum = 0;
        for(int i=0; i<n; i++){
            if(a[i] <= T){
                sum += a[i];
                T -= a[i];
                cnt++;
            }
        }
        if(!cnt){
            break;
        }
        ans += cnt;
        ans += cnt * (T / sum);
        T %= sum;//求余的特点,商不一定为1,所以有了上一步
    }
    printf("%lld
", ans);
}

 

  

 


以上是关于codeforces1073d的主要内容,如果未能解决你的问题,请参考以下文章

codeforces1073d Berland Fair 思维(暴力删除)

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)