2020.4.3BNUZ

文章目录

      • [A - Balloons](https://vjudge.net/contest/366196#problem/A)
      • [B - Cutting](https://vjudge.net/contest/366196#problem/B)
      • [C - Convert to Ones](https://vjudge.net/contest/366196#problem/C)
      • [D - Snowball](https://vjudge.net/contest/366196#problem/D)
      • [E - Squares and Segments](https://vjudge.net/contest/366196#problem/E)

A - Balloons

题意
分气球,不能满足要求就输出-1,能满足要求就输出其中一项分法
Solution
只有1袋的时候不能保证每人都有-1,有两袋的时候如果一样的数量也不满足要求,其他情况输出气球数量最少那袋(输出的是第几个,不是下标!!!!)
代码

#include<stdio.h>
int main(){
     
    int n,s[1001],min;
    while (~scanf("%d",&n)) {
     
        int flag = 0;min = 1000;
        for(int i = 0;i < n;i++){
     
            scanf("%d",&s[i]);
            if(min >= s[i]){
     
                flag = i;
                min = s[i];
            }
        }
        if(n == 1){
     
            printf("-1\n");
        }
        if(n == 2){
     
           if( s[0] == s[1])
                printf("-1\n");
           else{
     
                printf("1\n");
                printf("%d\n",flag+1);
           }
        }
        if(n > 2){
     
            printf("1\n");
            printf("%d\n",flag+1);
        }
    }
//    }
    return 0;
}

B - Cutting

题意
按照奇偶数量相等,在给出的bitcoins范围内划分最多的线
Solution
先划出最多的线,再从花费最多的那根线开始减,直到花费的少于给出的比特币
代码

#include<stdio.h>
#include<math.h>
#include<iostream>
#include<algorithm>
using namespace std;
int main(){
     
    int n,b,a[101],s[101];
    while (~scanf("%d %d",&n,&b)) {
     
        int j = 0,k = 0,count = 0,sum = 0,flag = 0;//j是奇数,k是偶数,count是划线数,sum是当前比特币使用量
        for(int i = 0;i < n;i++){
     
            scanf("%d",&a[i]);
            if(flag){
     //划一次就存一次当前的比特币使用量和总量,保证能够划出最多次
                sum += fabs(a[i]-a[i-1]);
                s[count-1] = fabs(a[i]-a[i-1]);
                flag = 0;
            }
            if(a[i] % 2 == 0)
                k++;
            else
                j++;
            if(k == j && i != n-1){
     //当奇数和偶数数量相同时就划线
                count++;flag = 1;
                k = 0;j = 0;
            }
        }
        sort(s,s+count);
        int i = count-1;
        while (sum > b){
     //一次剪去使用比特币最多的那次划线,直到使用的总比特币数小于给的值
            if(sum < b)break;
            sum -= s[i];
            i--;
            count--;
        }
        printf("%d\n",count);
    }
    return 0;
}

C - Convert to Ones

题意
1.子字符串可以反转,对应消费x;
2.子字符串可以每个都0->1或者1->0,对应消费y;
求最少消费使全部变成1;
Solution
两种方式:
1.每个0字符串都用方法2;
2.例如01010先两次方法一再一次方法2;
比较两种方法花费较小的一个
代码

#include<stdio.h>
#include<math.h>
#include<iostream>
#include<algorithm>
using namespace std;
char a[300005];
int main(){
     
    long long int x,y,n;
    while(~scanf("%lld %lld %lld",&n,&x,&y)){
     
        scanf("%s",a);
        int count = 0,sum = 0;
        for(int i = 0;i < n;i++){
     //统计1的子串
            if(a[i] == '1'){
     
                while(a[i] == '1' && i < n){
     
                    i++;sum++;
                }
                count++;
            }
        }
        if(sum == n){
     
            printf("0\n");
        }
        else{
     
            if(a[0] == '1')
                count--;
            if(a[n-1] == '1')
                count--;
            printf("%lld\n",min(count*x+y,(count+1)*y));
        }
    }
    return 0;
}

D - Snowball

** 题意**
雪球滚到多高就增加当前高度的重量,遇到石头就减去当前的石头重量
Solution
代码

#include<stdio.h>
int main()
{
     
    int w, h, u1, d1, u2, d2;
    scanf("%d%d%d%d%d%d", &w, &h, &u1, &d1, &u2, &d2);
    while (h)
    {
     
        w += h;
        if (w < 0)
            w = 0;
        if (h == d1)
            w -= u1;
        if (h == d2)
            w -= u2;
        h--;
    }
    printf("%d\n", w);
    return 0;
}

E - Squares and Segments

题意
求能给出最少的线段使sofia可以根据x、x+1不动只动y或者y、y+1不动只动x就能补全要画的正方形数
Solution
注意n^2很特殊就好
代码

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
const int MAXN = 300005;
char s[MAXN];
int main() {
     
    int n;
    while(~scanf("%d",&n)){
     
        for(int i = 1;;i++){
     
            if(n == i*i){
     
                printf("%d",2*i);
                break;
            }
            else if(n > i*i && n <= i*(i+1)){
     
                printf("%d",2*i+1);break;
            }
            else if(n > i*(i+1) && n <= (i+1)*(i+1)){
     
                printf("%d",2*(i+1));break;
            }
        }
        printf("\n");
    }
    return 0;
}

你可能感兴趣的:(2020.4.3BNUZ)