上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 96 下一页
摘要: struct Node { long long a; long long b; long long c; long long num; int i; bool operator < (const Node& t)const { return ((num>t.num)|| (num==t.num&&a 阅读全文
posted @ 2016-05-15 21:03 超级学渣渣 阅读(1012) 评论(0) 推荐(0) 编辑
摘要: Problem C: The Same Color Description Diao Yang has many balls with different colors. Today he wants to divide his balls into two groups. But he does 阅读全文
posted @ 2016-05-15 20:54 超级学渣渣 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Array C Description Giving two integers and and two arrays and both with length , you should construct an array also with length which satisfied: 1.0≤ 阅读全文
posted @ 2016-05-15 20:52 超级学渣渣 阅读(303) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdio.h> #include<math.h> #include<algorithm> using namespace std; int main() { int n; while(~scanf("%d",&n)&&n!=0) { int 阅读全文
posted @ 2016-05-14 21:36 超级学渣渣 阅读(118) 评论(0) 推荐(0) 编辑
摘要: struct Node { int d, e; bool operator < (const Node x) const { return x.d < d; } Node(int d, int e):d(d), e(e){} }; 阅读全文
posted @ 2016-05-14 10:12 超级学渣渣 阅读(1733) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <queue> using namespace std; int main(){ priority_queue<int> q; for( int i= 0; i< 10; ++i ) q.push( rand() ); while( !q.e 阅读全文
posted @ 2016-05-13 21:35 超级学渣渣 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Count Good Substrings Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 451D Count Good Substrin 阅读全文
posted @ 2016-05-13 17:13 超级学渣渣 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 1 设置单元格格式后,没有变化,需要逐个单击 原因:Excel设置过单元格格式后,并不能立即生效必须挨个双击单元格,才能生效。数据行很多。效率太低。 原因:主要是一些从网上拷贝过来的日期或数字excel默认为文本格式或特殊-中文数字格式大小写。手动设置单元格,将格式改成日期格式,但仍不能参与计算。只 阅读全文
posted @ 2016-05-12 20:38 超级学渣渣 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Jzzhu and Chocolate time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Jzzhu has a big recta 阅读全文
posted @ 2016-05-09 15:06 超级学渣渣 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Pashmak and Parmida's problem Time Limit:3000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 459D Pashmak and 阅读全文
posted @ 2016-05-09 01:18 超级学渣渣 阅读(377) 评论(0) 推荐(0) 编辑
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 96 下一页