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

POJ 1017: Packets

时间:2018-07-20 00:19:20      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:input   namespace   lan   false   输入   VID   space   top   ssi   

技术分享图片
#include <iostream>
#include <string>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#include <deque>
#include <map>
#define range(i,a,b) for(int i=a;i<=b;++i)
#define LL long long
#define rerange(i,a,b) for(int i=a;i>=b;--i)
#define fill(arr,tmp) memset(arr,tmp,sizeof(arr))
using namespace std;
int num[]={0,5,3,1},pro[6];
void init(){

}
void solve(){
    while(true){
        bool flag=false;
        range(i,0,5){
            cin>>pro[i];
            if(pro[i]>0)flag=true;
        }
        if(!flag)break;
        int pack=pro[5]+pro[4]+pro[3]+(pro[2]+3)/4;
        int twos=pro[3]*5+num[pro[2]%4];
        if(pro[1]>twos)pack+=(pro[1]-twos+8)/9;
        int ones=36*pack-36*pro[5]-25*pro[4]-16*pro[3]-9*pro[2]-4*pro[1];
        if(pro[0]>ones)pack+=(pro[0]-ones+35)/36;
        cout<<pack<<endl;
    }
}
int main() {
    init();
    solve();
    return 0;
}
View Code

 

POJ 1017: Packets

标签:input   namespace   lan   false   输入   VID   space   top   ssi   

原文地址:https://www.cnblogs.com/Rhythm-/p/9339066.html

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