1、pig out 狼吞虎咽、大吃特吃Would you like to pig out with us tonight?今晚想不想跟我们一起去胡吃海喝一顿?2、eat up 吃光、吃完、尽情吃You can eat up the rest of the food.你可以把剩余的食物吃光。3、eat...
分类:
其他好文 时间:
2014-08-06 18:38:31
阅读次数:
214
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1227
#include
#include
#include
#include
#include
#include
using namespace std;
const int MAXN = 200 + 1; //the number of restaurants
const i...
分类:
其他好文 时间:
2014-08-04 21:42:58
阅读次数:
252
menu 菜单French cuisine 法国菜today's special 今日特餐chef's special 主厨特餐buffet 自助餐fast food 快餐specialty 招牌菜continental cuisine 欧式西餐aperitif 饭前酒dim sum 点心Frenc...
分类:
其他好文 时间:
2014-07-29 17:35:22
阅读次数:
188
美国肉类供应商福喜集团(OSI Group)表示,将从市场上召回其上海子公司生产的所有产品,以控制过期肉事件的影响。目前这起事件已对中国大陆、香港、日本等地的快餐连锁企业造成冲击。中国政府指责福喜集团子公司上海福喜食品有限公司(Shanghai Husi Food Co.)故意向餐饮企业出售过期肉制...
分类:
其他好文 时间:
2014-07-29 10:54:56
阅读次数:
214
题意:在一条公路上,有n个酒店,要建造k个供给站(建造在酒店所在的位置),给出酒店的位置,求怎么样建造供给站才能使得每个酒店都能得到服务且所要走的路程最短。
思路:在i到j酒店建立一个供给站,要使得路程和最短,要将供给站建立在中间。如果i到j为偶数时,可以建立在中间两个数其中一个地方,如果是奇数时,应该建立在(i + j) / 2的地方。我们可以预处理从i到j酒店的最短路程和dis[i]...
分类:
其他好文 时间:
2014-07-26 02:17:16
阅读次数:
192
INPUT语句1 INPUT Food $; /*采用list-style input,字符型变量默认长度为8*/2 INPUT Food $1-10; /*采用column input,长度由列的数量决定*/3 INPUT Food $15.; /*采用formatted input,长度form...
分类:
其他好文 时间:
2014-07-26 01:44:26
阅读次数:
218
一 Words1 gobble up 吞并 e.g. Banc One of Ochio has built an empire in the midwest by gobbling up smaller banks.俄亥俄州第一银行通过兼并一些小银行成为中西部地区的巨头2 gobble up耗费 ...
分类:
其他好文 时间:
2014-07-24 10:02:04
阅读次数:
191
在工作中经常遇到用异常去控制程序流程,下面是一个普遍的例子:public class Microwave{ private IMicrowaveMotor Motor { get; set; } public bool Start(object food) { boo...
分类:
其他好文 时间:
2014-07-16 18:45:00
阅读次数:
186
public class TestThis { private String name; void eat(String name){ //String food;//局部变量在使用时必须初始化,否则会报错 error String food = "apple"; //right Syste...
分类:
其他好文 时间:
2014-07-16 17:01:11
阅读次数:
169
/*
K - 贪心 基础
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit
Status
Description
FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the ...
分类:
其他好文 时间:
2014-07-15 10:16:57
阅读次数:
214