设为首页 加入收藏

TOP

USACO Section 2.1 Healthy Holsteins
2015-07-20 18:03:36 来源: 作者: 【 】 浏览:3
Tags:USACO Section 2.1 Healthy Holsteins
/*
ID: lucien23
PROG: holstein
LANG: C++
*/

#include 
  
   
#include 
   
     #include 
    
      using namespace std; bool compFun(int x, int y) { int temp, i = 0; while (true) { temp = 1 << i; if (temp&x > temp&y) { return true; } else if (temp&x < temp&y) { return false; } i++; } } int main() { ifstream infile("holstein.in"); ofstream outfile("holstein.out"); if(!infile || !outfile) { cout << "file operation failure!" << endl; return -1; } int arrCnt[15] = {1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767}; int V; infile >> V; int *minRequire = new int[V]; for (int i=0; i
     
      > minRequire[i]; } int G; infile >> G; int **feeds = new int *[G]; for (int i=0; i
      
       > feeds[i][j]; } } int minScoopsCnt = 16; int minScoops = 0; int *sumVita = new int[V]; int sumScoops; for (int i=1; i<=arrCnt[G-1]; i++) {//穷举遍历每一种方案 for (int k=0; k
       
        
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇poj 3090 && poj 2478(.. 下一篇leetcode-Word Search

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: