E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Givers
USACO Section 1.1 Greedy Gift
Givers
大意略。/* ID:g0feng1 LANG:C++ TASK:gift1 */ #include #include #include #include #include #include #include #include #include usingnamespacestd; ofstreamfout("gift1.out"); ifstreamfin("gift1.in"); mapM
Wall_F
·
2013-03-26 11:00
UVA Greedy Gift
Givers
GreedyGiftGiversAgroupofNP(2≤NP≤10)uniquelynamedfriendshasdecidedtoexchangegiftsofmoney.Eachofthesefriendsmightormightnotgivesomemoneytoanyoralloftheotherfriends.Likewise,eachfriendmightormightnotrece
jimzhai
·
2013-01-28 21:00
Greedy Gift
Givers
GreedyGiftGiversAgroupofNP(2≤NP≤10)uniquelynamedfriendshasdecidedtoexchangegiftsofmoney.Eachofthesefriendsmightormightnotgivesomemoneytoanyoralloftheotherfriends.Likewise,eachfriendmightormightnotrece
pucca6
·
2012-12-17 22:00
USACO 1.0_Greedy Gift
Givers
/* ID:zfb2 LANG:C++ TASK:gift1 */ #include #include #include usingnamespacestd; structfriends{ charname[15]; intmoney; }person[10]; intmain(){ freopen("gift1.in","r",stdin); freopen("gift1.out","w",
電泡泡
·
2012-11-01 10:00
USACO 1.1.2 Greedy Gift
Givers
我的:问题的难点是:题目的理解和名字的存储。get[]存放的是得到的钱,money[]开始是送礼者原来钱数,然后存储送出的总钱数这个题用文件在Codeblocks上通不过但提交时就OK了,不知咋回事/* ID:90girl1 PROG:gift1 LANG:C++ */ #include #include #include #defineNP15 usingnamespacestd; intmai
hedafighter2011
·
2012-09-23 18:00
1.1 Greedy Gift
Givers
这个题目比上个题目要稍微难一点,题目意思大概是有一群人,互相送money,要求送出的都是整数,每个人总共送出的money数量不一样,平均分给他的朋友们,不能送出的自己留下,每个人的朋友数量也不一样。要求从文件中读取数据,并运算算出最后每个人收到的money比送出的money多的数量。 这个程序的关键是怎么处理凌乱的数据吧,我是定义结构体来保存每个人的数据的。程序中在使用strcmp(
zzwei
·
2012-07-08 19:00
USACO
Gift
【USACO-Chapter1-1.1】【模拟】Greedy Gift
Givers
【题目描述】对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少。在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人。然而,在任何一群朋友中,有些人将送出较多的礼物(可能是因为有较多的朋友),有些人有准备了较多的钱。给出一群朋友,没有人的名字会长于14字符,给出每个人将花在送礼上的钱,和将收到他的礼物的人的列表,请确定每个人收到的比送出
njlcazl
·
2012-06-17 17:00
USACO1.1 Greedy Gift
Givers
(gift1)
将np个人名保存到stringa[10]中,对应s[10]是他们的收钱和送钱差。对于从np+2到最后每一组输入,先找到此人的位置k,然后计算他送出钱的总数,取相反数保存进s[k],然后分别将找到他送钱的人的位置k,在s[k]中加上送给他的钱数。/* ID:jzzlee1 PROG:gift1 LANG:C++ */ #include usingnamespacestd; ifstr
jzzlee
·
2012-06-05 11:00
USACO
USACO Training Section 1.2 Greedy Gift
Givers
这道题难度不大,算是纯纯的模拟题目,但是交了5次都没有过,原因是没有把送礼者剩余的钱加回来,加回来就AC了。因为数据很小(2,理论上应该更加方便、高效。代码如下:/* ID:aircraf1PROB:gift1LANG:C++*/ #include #includeusingnamespacestd;intnp;intfind(strings);struct {stringname;}
Spix Mojo
·
2012-05-24 20:00
uscao Section 1.1 Greedy Gift
Givers
简单题,建个结构体/*ID:nealgav1 PROG:gift1 LANG:C++ */ #include #include #defineN2004 classpeople { public: charname[20]; intmoney; }; intm; peoplename[N]; intgetid(charname_[]) { for(inti=0;i
nealgavin
·
2012-04-07 20:00
c
Class
IM
USASO Greedy Gift
Givers
1.文件输入输出好别扭;2.第一次没注意到cas--之后for循环就没作用了,得不到结果。/* ID:dollarzhaole PROG:gift1 LANG:C++ */ #include #include #include usingnamespacestd; structNode { stringname; intsendp;//送给几个人 intgetm;//收到的钱 intsendm;/
dollarzhaole
·
2012-04-05 15:00
[USACO] Chapter1-Getting started(入门)
Greedy Gift
Givers
(gift1) /* ID:123ldss2 PROG: gift1 LANG: C++ */ #include<
暴风雪
·
2012-03-15 10:00
数据结构
ACM
USACO
USACO - 1.1.2 - Greedy Gift
Givers
转载请注明出处 摘要:模拟 一. 题目翻译 1. 描述: 对于一群要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少。 在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人。 然而,在任何一群朋友
qingtangpaomian
·
2012-02-22 10:00
java
算法
USACO
USACO 1.1.2 Greedy Gift
Givers
纯模拟,刚开始我把题意看错了,以为遇到00就终止,WA多次。其实题意是要接受NP组数据(NP是总人数),对每组数据进行简单处理就可以,不再赘述。代码(普通查找O(n)):/* ID:michael139 LANG:C PROG:gift1 */ #include #include typedefstruct{ charname[20]; intmoney; }Person; intmain(){
michaelalan
·
2012-02-20 17:00
UVa Problem 119 - Greedy Gift
Givers
//UVaProblem119-GreedyGiftGivers //Verdict:Accepted //SubmissionDate:2011-11-26 //UVaRunTime:0.012s // //版权所有(C)2011,邱秋。metaphysis#yeahdotnet // //[解题方法] //简单的模拟题。 #include #include usingnamespacest
metaphysis
·
2011-12-02 14:00
c
Date
String
1.1.2 Greedy Gift
Givers
很简单一道题,但是没弄清题意把我害惨了……#include #include #include usingnamespacestd; intmain(){ ofstreamfout("gift1.out"); ifstreamfin("gift1.in"); stringname[11],temp; longlongn,i,j,k,money[11]={0}; fin>>n; //cin>
tanhaiyuan
·
2011-11-27 01:00
【水题】USACO Greedy Gift
Givers
进入USACO要注册才可看题: http://train.usaco.org/usacogate 题目:【翻译版、是别处的网站】 http://www.wzoi.org/usaco/11%5C106.asp SAMPLE INPUT (file gift1.in) 5 dave laura owen vick amr dave 200 3 laura owen
基德KID.1412
·
2011-06-09 22:00
C++
c
算法
编程语言
ACM
Greedy Gift
Givers
Greedy Gift
Givers
A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts
格桑花
·
2011-06-03 18:00
windows
linux
unix
UP
Exchange
USACO 1.1.2 Greedy Gift
Givers
USACO1.1.2GreedyGiftGivers题意:每个人都准备一些钱平均分给其他人,不能分的部分留给自己,计算每个人的得失。分析:使用两个数组,一个计算得,一个计算失,result[i]=receive[i]-give[i]PS:用Map更简单些。/**//*ID: lorelei3PROG: gift1LANG:C++*/#include #include using namespace
小阮的菜田
·
2010-11-02 22:00
USACO Greedy Gift
Givers
//考察点:结构体//思路:简单模拟 注意要先减掉准备分配出去的钱然后再把余下的加回来//提交情况:1AC//收获:p->mon+=mon/nf;是错误的写法 mon变成未定义的东西了如果要更新p->mon应该写成p->mon=p->mon+p->mon/nf;//经验:以后编程的时候要注意结构体的使用//ACcode:/*ID: qiuqiyu1PROB: gift1LANG: C++*/#in
acronix
·
2010-09-10 21:00
UVa OJ 119 - Greedy Gift
Givers
(贪婪的送礼者)
Timelimit:3.000seconds限时:3.000秒 TheProblem问题Thisprobleminvolvesdetermining,foragroupofgift-givingfriends,howmuchmoreeachpersongivesthantheyreceive(andviceversaforthosethatviewgift-givingwithcynicism).
Devymex
·
2010-08-14 18:00
Greedy Gift
Givers
(USACO)
/*ID:tianlin2PROG:gift1LANG:C++*/#include#include#includeusingnamespacestd;intmain(){ofstreamfout("gift1.out");ifstreamfin("gift1.in");intmo,ge;inta,b=0,c=0;strings1,s2;fin>>a;string*st=newstring[a];i
cyxcw1
·
2010-02-20 15:00
USACO 1.1.2 Greedy Gift
Givers
USACO1.1.2GreedyGiftGivers同样是参考了别人的代码,但是这样的参考是我受益匪浅。 1 /* 2 ID:31440461 3 PROG:gift1 4 LANG:C++ 5 */ 6 #include 7 #include 8 #include 9 using namespace std;10 struct people11 {12 string name;13 in
生无所息
·
2009-07-12 13:00
USACO:Section 1.1 Greedy Gift
Givers
气死我了,提交半天么成功,原来他们的“_”是指空格,气死俺了。 /* ID:lwj13961 TASK:gift1 LANG: C++ */ #include<iostream> #include<fstream> #include<vector> #include<cstring> #include<cassert> using na
csstome
·
2009-06-29 15:00
C++
c
C#
Section 1.1 - Greedy Gift
Givers
1 #include 2 3 using namespace std; 4 5 class people 6 { 7 public: 8 string name; 9 int oriMoney;10 int curMoney;11 12 people()13 {14 oriMoney = curMoney = 0;15 }16
superman
·
2009-03-04 19:00
Greedy Gift
Givers
GreedyGiftGivers 题目原文请看这里:GreedyGiftGivers 题目本比较简单,但我读了半天才算读懂,英文水平跟不上了。 题目大意:有NP个人,每个人都向其他人送钱,同时他又会收到别人送给他的钱。题目要求计算每个人收到的钱比送出的钱多多少。解答:/*ID: lixianm1PROG: gift1LANG: C++*/#include #include #include #in
清风竹林
·
2008-12-02 16:00
USACO 1.1.2 Greedy Gift
Givers
GreedyGiftGivers贪婪的礼物送礼者译bytimgreen对于一群要互送礼物的朋友,你要确定每个人送出的礼物比收到的多多少(andviceversaforthosewhoviewgiftgivingwithcynicism)。在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人。然而,在任何一群朋友中,有些人将送出较多的礼物(可能是因为有较多的朋友
--------OUTDOMEL--------
·
2008-04-12 06:00
Section 1.1 Greedy Gift
Givers
AgroupofNP(2≤NP≤10)uniquelynamedfriendshasdecidedtoexchangegiftsofmoney.Eachofthesefriendsmightormightnotgivesomemoneytoanyoralloftheotherfriends.Likewise,eachfriendmightormightnotreceivemoneyfromanyo
Coding Life
·
2008-04-08 19:00
上一页
1
2
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他