AtCoder Beginner Contest 332

A - Online Shopping (atcoder.jp)

AC代码:

#include<bits/stdc++.h>
#define endl '\n'
//#define int long long
using namespace std;
int n,s,k;
void solve() {
    cin>>n>>s>>k;
    int ans=0;
    for(int i=0;i<n;i++){
        int x,y;
        cin>>x>>y;
        ans+=x*y;
    }
    if(ans<s) ans+=k;
    cout<<ans<<endl;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t=1;
//    cin>>t;
    while(t--) {
        solve();
    }
    return 0;
}

B - Glass and Mug (atcoder.jp)

数据量很小,直接暴力模拟

AC代码:

#include<bits/stdc++.h>
#define endl '\n'
//#define int long long
using namespace std;
int k,g,m;
void solve() {
    cin>>k>>g>>m;
    int x=0,y=0;
    while(k--){
        if(x==g) x=0;
        else if(y==0) y=m;
        else{
            int res=g-x;
            if(y>=res) x=g,y-=res;
            else x+=y,y=0;
        }
    }
    cout<<x<<' '<<y<<endl;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t=1;
//    cin>>t;
    while(t--) {
        solve();
    }
    return 0;
}

C - T-shirts (atcoder.jp)

看题目的问法,很明显是二分答案

AC代码:

#include<bits/stdc++.h>
#define endl '\n'
//#define int long long
using namespace std;
int n,m;
string s;
bool check(int x){
    
    int b=x;//logo的总数,包括worn
    int bb=x;//logo的总数,不包括worn
    
    int sum=m+x;//plain和loge的总数,包括worn
    int summ=sum;//plain和logo的总数,不包括worn
    
    for(int i=0;i<n;i++){
        if(s[i]=='0') bb=b,summ=sum;
        else if(s[i]=='1') {
            summ--;
            if(summ<0) return false;
        }
        else if(s[i]=='2'){
            bb--;
            summ--;
            if(bb<0||summ<0) return false;
        }
    }
    return true;
}
void solve() {
    cin>>n>>m;
    cin>>s;
    int l=0,r=1000;
    while(l<r){
        int mid=(l+r)/2;
        if(check(mid)) r=mid;
        else l=mid+1;
    }
    cout<<l<<endl;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t=1;
//    cin>>t;
    while(t--) {
        solve();
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值