usaco-3.2-ratios-pass

这个配比问题,呵呵,线性代数知识,枚举吧,这个数量小。

/*
ID: qq104801
LANG: C++
TASK: ratios
*/

#include <iostream>
#include <fstream>
#include <bitset>
#include <cstdio>
#include <algorithm>

using namespace std;

int goal[3];
int ii[3][3];
int ans[4];
int minsum=100000;

inline int asum(int in,int i,int j,int k)
{
    return ii[0][in]*i+ii[1][in]*j+ii[2][in]*k;
}

inline int xsum(int i,int j,int k)
{
    return asum(0,i,j,k)+asum(1,i,j,k)+asum(2,i,j,k);
}

void test()
{
    freopen("ratios.in","r",stdin);
    freopen("ratios.out","w",stdout);
    int isum=0;
    for(int i=0;i<3;i++)
    {
        cin>>goal[i];
        isum+=goal[i];
    }
    for(int i=0;i<3;i++)
        for(int j=0;j<3;j++)
            cin>>ii[i][j];
    if(isum==0)
    {
        cout<<"0 0 0 0"<<endl;
        return;
    }

    for(int i=0;i<100 && i<minsum;i++)
        for(int j=0;j<100 && j<minsum;j++)
            for(int k=0;k<100 && k<minsum;k++)
            {
                if(i+j+k==0)continue;
                int cc[3];
                for(int c=0;c<3;c++)
                    cc[c]=asum(c,i,j,k);
                if(cc[0]*goal[1]!=cc[1]*goal[0])continue;
                if(cc[1]*goal[2]!=cc[2]*goal[1])continue;
                if(cc[0]<goal[0] || cc[1]<goal[1]                     || cc[2]<goal[2]) continue;
                minsum=i+j+k;
            ans[0]=i;ans[1]=j;ans[2]=k;
            ans[3]=xsum(i,j,k)/isum;
            }
            if(ans[0]+ans[1]+ans[2]==0)
            {
                cout<<"NONE"<<endl;
                return;
            }
            cout<<ans[0]<<" "<<ans[1]<<" "<<ans[2]<<" "<<ans[3]<<endl;
}

int main ()
{
    test();
    return 0;
}

test data:

USACO Training
Grader Results
10 users online
CHN/4 USA/6

USER: cn tom [qq104801]
TASK: ratios
LANG: C++

Compiling...
Compile: OK

Executing...
   Test 1: TEST OK [0.008 secs, 3376 KB]
   Test 2: TEST OK [0.011 secs, 3376 KB]
   Test 3: TEST OK [0.008 secs, 3376 KB]
   Test 4: TEST OK [0.022 secs, 3376 KB]
   Test 5: TEST OK [0.027 secs, 3376 KB]
   Test 6: TEST OK [0.011 secs, 3376 KB]

All tests OK.

YOUR PROGRAM (‘ratios‘) WORKED FIRST TIME! That‘s fantastic -- and a rare thing. Please accept these special automated congratulations.

Here are the test data inputs:

------- test 1 ----
5 8 0
3 5 4
1 3 0
6 2 0
------- test 2 ----
3 4 5
1 2 3
3 7 1
2 1 2
------- test 3 ----
20 22 24
4 5 5
9 5 6
12 12 14
------- test 4 ----
80 85 80
98 97 96
89 87 88
78 79 80
------- test 5 ----
99 99 99
1 0 0
0 1 0
0 0 1
------- test 6 ----
93 95 97
98 0 0
0 98 0
0 0 98

Keep up the good work!
Thanks for your submission!
时间: 2024-10-22 20:26:44

usaco-3.2-ratios-pass的相关文章

USACO 3.2 ratios 高斯消元

题目原意很简单,就是解一个三元一次方程组 直接高斯消元解方程组,枚举最后一列的倍数(k) 注意double的精度,有很多细节需要处理 1 /* 2 PROB:ratios 3 LANG:C++ 4 */ 5 6 #include <stdio.h> 7 #include <math.h> 8 #include <algorithm> 9 #include <iostream> 10 using namespace std; 11 #define maxn 5

USACO Feed Ratios

这题就是经典的配饲料, 由于最多配比是100因此可以用暴力解决法, 注意下mod 0的处理, 代码如下: /* ID: m1500293 LANG: C++ PROG: ratios */ #include <cstdio> #include <algorithm> #include <cstring> using namespace std; int si[10]; int a[10][10]; int res[10], sum; void deal(int ii,

洛谷P2729 饲料调配 Feed Ratios

P2729 饲料调配 Feed Ratios 36通过 103提交 题目提供者该用户不存在 标签USACO 难度普及/提高- 提交  讨论  题解 最新讨论 暂时没有讨论 题目背景 农夫约翰从来只用调配得最好的饲料来喂他的奶牛.饲料用三种原料调配成:大麦,燕麦和小麦.他知道自己的饲料精确的配比,在市场上是买不到这样的饲料的.他只好购买其他三种混合饲料(同样都由三种麦子组成),然后将它们混合,来调配他的完美饲料. 题目描述 给出三组整数,表示 大麦:燕麦:小麦 的比例,找出用这三种饲料调配 x:y

[usaco3.2.4]ratios

题目传送门:http://www.nocow.cn/index.php/Translate:USACO/ratios 这道题也是直接枚举... /* ID:abc31261 LANG:C++ TASK:ratios */ #include<cstdio> #include<cstring> #include<iostream> using namespace std; int a[5][5]; int main() { int i,j,l,k,p,ansmin=0x7f

枚举解Feed Ratios

Feed Ratios 1998 ACM Finals, Dan Adkins Farmer John feeds his cows only the finest mixture of cow food,which has three components: Barley, Oats, and Wheat. While he knowsthe precise mixture of these easily mixable grains, he can not buy thatmixture!

Usaco Open09 Gold

Problem 1: Ski Lessons [Brian Jacokes, 2002] Farmer John wants to take Bessie skiing in Colorado. Sadly, Bessie is not really a very good skier. Bessie has learned that the ski resort is offering S (0 <= S <= 100) ski classes throughout the day. Les

【USACO 3.2.4】饲料调配

[描述] 农夫约翰从来只用调配得最好的饲料来喂他的奶牛.饲料用三种原料调配成:大麦,燕麦和小麦.他知道自己的饲料精确的配比,在市场上是买不到这样的饲料的.他只好购买其他三种混合饲料(同样都由三种麦子组成),然后将它们混合,来调配他的完美饲料. 给出三组整数,表示 大麦:燕麦:小麦 的比例,找出用这三种饲料调配 x:y:z 的饲料的方法. 例如,给出目标饲料 3:4:5 和三种饲料的比例: 1:2:3 3:7:1 2:1:2 你必须编程找出使这三种饲料用量最少的方案,要是不能用这三种饲料调配目标饲

COGS 696. [IOI1996][USACO 2.3] 最长前缀

★   输入文件:prefix.in   输出文件:prefix.out   简单对比时间限制:1 s   内存限制:128 MB 描述 USACO 2.3.1 IOI96 在生物学中,一些生物的结构是用包含其要素的大写字母序列来表示的.生物学家对于把长的序列分解成较短的序列(即元素)很感兴趣. 如果一个集合 P 中的元素可以通过串联(元素可以重复使用,相当于 Pascal 中的 “+” 运算符)组成一个序列 S ,那么我们认为序列 S 可以分解为 P 中的元素.元素不一定要全部出现(如下例中B

USACO prefix TrieTree + DP

/* ID:kevin_s1 PROG:prefix LANG:C++ */ #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <vector> #include <map> #include <set> #include <algorithm> #include <cstdlib>

【USACO 1.3.4】牛式

[題目描述 ] 下面是一个乘法竖式,如果用我们给定的那n个数字来取代*,可以使式子成立的话,我们就叫这个式子牛式. * * * x * * ---------- * * * * * * ---------- * * * * 数字只能取代*,当然第一位不能为0,况且给定的数字里不包括0. 注意一下在美国的学校中教的"部分乘积",第一部分乘积是第二个数的个位和第一个数的积,第二部分乘积是第二个数的十位和第一个数的乘积. 写一个程序找出所有的牛式. [格式] INPUT FORMAT: (f