`
文章列表
总时间限制: 1000ms 内存限制: 65536kB 描述 一个工厂制造的产品形状都是长方体,它们的高度都是h,长和宽都相等,一共有六个型号,他们的长宽分别为1*1, 2*2, 3*3, 4*4, 5*5, 6*6。这些产品通常使用一个 6*6*h 的长方体包裹包装然后邮寄给客户。因为邮费很贵,所以工厂要想方设法的减小每个订单运送时的包裹数量。他们很需要有一个好的程序帮他们解决这个问题从而节省费用。现在这个程序由你来设计。 输入 输入文件包括几行,每一行代表一个订单。每个订单里的一行包括六个整数,中间用空格隔开,分别为1*1至6*6这六种产品的数量。输入文件将以6个0组成的一行结尾。 ...
总时间限制: 1000ms 内存限制: 65536kB 描述 Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个 ...
1054:The Troublesome Frog 总时间限制: 5000ms 内存限制: 100000kB 描述 In Korea, the naughtiness of the cheonggaeguri, a small frog, is legendary. This is a well-deserved reputation, because the frogs jump through your rice paddy at night, flattening rice plants. In the morning, after noting which plant ...
1222:EXTENDED LIGHTS OUT 总时间限制: 1000ms 内存限制: 65536kB 描述 In an extended version of the game Lights Out, is a puzzle with 5 rows of 6 buttons each (the actual puzzle has 5 rows of 5 buttons each). Each button has a light. When a button is pressed, that button and each of its (up to four) neighbor ...

1543(枚举)

  完美立方 总时间限制: 1000ms 内存限制: 65536kB 描述 For hundreds of years Fermat's Last Theorem, which stated simply that for n > 2 there exist no integers a, b, c > 1 such that a^n = b^n + c^n, has remained elusively unproven. (A recent proof is believed to be correct, though it is still undergoing s ...
结构体实现单向链表 1.定义一个结构体   #include<iostream> #include<cstdlib> using namespace std ; #define LEN (sizeof(struct student)) struct student{ int num ; float score ; struct student *next ; }; //定义全局变量,记录链表中所含节点个数 int n ;  2.创建一个链表   /** 创建一个链表 */ struct student *cre ...

输入输出流

 例1:   #include <iostream> using namespace std ; int main( ){ char test1[1001], test2[1001]; cin.getline(test1,1000,'a'); cout <<test1; cin.getline(test2,1000,'a'); cout <<test2; cout << endl; return 0 ; }   输入: qwer add ...
1.什么是反射? 一个类有多个组成部分,例如:成员变量,方法,构造方法等。 反射就是加载类,并解剖出类的各个组成部分。 2.加载类 java中有一个Class类用于代表某一个类的字节码。 Class类既然代表某个类的字节码,那就要提供加载某个类 字节码的方法:forName().   此方法用于加载某个类的字节码 到内存中,并使用class对象进行封装。 另外2种得到class对象的方式:       类名.class       对象.getClass()     先创建一个简单的Person类     public class ReflectDemo { ...
 1,什么是枚举类?   枚举是一种特殊形式的java类  枚举类中声明的每一个枚举值代表美剧尅的一个势力对象 。  枚举类的构造函数必须私有  枚举类也可以实现接口或者继承抽象类  switch语句可以接受枚举类型  若枚举类只有一个枚举值,则可以当做单态设计模式使用  用单态设计模式定义出了一个类  //例如,下面就是单态设计模式,只有一个实例对象 enum A{  //class     A ;  //Object  }   2.枚举类怎么实现?   /** * 一些程序在运行时它需要的数据不能是任意的, * 而必须是一定范围内的值。 */class Grade{ privat ...
 test 1:    数组: /** * 增强for循环 */ @Test public void test1() { int arr[] = { 1, 2, 3 }; for (int i : arr) { System.out.println(i); } }  test 2:     列表:     @Test public void test2() { List list = new ArrayList(); list.add(1); // 自动包装 list.add(2 ...

1009

总时间限制: 1000ms 内存限制: 65536kB 描述 IONU Satellite Imaging, Inc. records and stores very large images using run length encoding. You are to write a program that reads a compressed image, finds the edges in the image, as described below, and outputs another compressed image of the detected edges.A sim ...

1008

总时间限制: 1000ms 内存限制: 65536kB 描述 During his last sabbatical, professor M. A. Ya made a surprising discovery about the old Maya calendar. From an old knotted message, professor discovered that the Maya civilization used a 365 day long year, called Haab, which had 19 months. Each of the first 18 m ...
求解2的N次方。100《N《300 #include<iostream> using namespace std ; int main() { int a[310]={0},i,n; cin>>n ; a[0]=2 ; n=n-1 ; while(n--) { for(i=0;i<310;i++) { a[i] = 2*a[i] ; } for(i=0;i<310;i++) { ...

1007

总时间限制: 1000ms 内存限制: 65536kB 描述 现在有一些长度相等的DNA串(只由ACGT四个字母组成),请将它们按照逆序对的数量多少排序。 逆序对指的是字符串A中的两个字符A[i]、A[j],具有i < j 且 A[i] > A[j] 的性质。如字符串”ATCG“中,T和C是一个逆序对,T和G是另一个逆序对,这个字符串的逆序对数为2。   输入 第1行:两个整数n和m,n(0<n<=50)表示字符串长度,m(0<m<=100)表示字符串数量第2至m+1行:每行是一个长度为n的字符串 输出 按逆序对数从少到多输出字符串,逆 ...

1006

总时间限制: 3000ms 内存限制: 65536kB 描述 Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the physical, emotional, and intellectual cycles, and they have periods of lengths 23, 28, and 33 days, respectively. There is one peak i ...
Global site tag (gtag.js) - Google Analytics