G. Robots time limit per test 5.0 s memory limit per test 256 MB input standard input output standard output G. Robots time limit per test 5.0 s time ...
分类:
其他好文 时间:
2019-02-13 22:33:50
阅读次数:
178
layout: post title: (寒假开黑gym)2018 ACM ICPC, Syrian Collegiate Programming Contest author: "luowentaoaa" catalog: true tags: mathjax: true codeforces 传 ...
分类:
其他好文 时间:
2019-02-12 21:58:16
阅读次数:
209
A .Abstract Art 题意:求多个多边形的面积并。 思路:模板题。 #include<bits/stdc++.h> using namespace std; typedef long long ll; const double inf=1e200; const double eps=1e- ...
分类:
其他好文 时间:
2019-02-07 17:37:44
阅读次数:
164
A .A Prize No One Can Win 题意:给定N,S,你要从N个数中选最多是数,使得任意两个之和不大于S。 思路:排序,然后贪心的选即可。 #include<bits/stdc++.h> #define ll long long #define rep(i,a,b) for(int ...
分类:
其他好文 时间:
2019-02-06 17:09:28
阅读次数:
234
#include #define pii pair #define mp make_pair #define ll long long #define rep(i,a,b) for(int i=a;i>1; ll tmp1=getans(p,q[Mid]),tmp2=getans(p,q[Mid+1... ...
分类:
其他好文 时间:
2019-02-06 11:58:40
阅读次数:
179
After the end of the truck drivers' strike, you and the rest of Nlogônia logistics specialists now have the task of planning the refueling of the gas ...
分类:
其他好文 时间:
2019-02-05 23:48:05
阅读次数:
144
Figure: The house floats up in the sky by balloons. This picture is also used in 2018 KAIST RUN Spring Contest poster. In the year 2117, Professor Jae ...
分类:
其他好文 时间:
2019-02-05 22:22:11
阅读次数:
146
Grandpa Giuseppe won a professional pizza cutter, the kind of type reel and, to celebrate, baked a rectangle pizza to his grandchildren! He always sli ...
分类:
编程语言 时间:
2019-02-05 22:03:33
阅读次数:
162
A string is palindrome, if the string reads the same backward and forward. For example, strings like "a", "aa", "appa", "queryreuq" are all palindrome ...
分类:
其他好文 时间:
2019-02-05 18:08:05
阅读次数:
232
B .Aesthetics in poetry 题意:给定N个数,(N<2000 ,a[i] <=1e9),让你找一个最大的K,使得N个数膜K的余数个数全都等于N/K个。 思路:我们找到N的因子,然后验证即可,复杂度O(N^2) #include<bits/stdc++.h> #define rep ...
分类:
其他好文 时间:
2019-02-04 20:53:32
阅读次数:
264