邀请赛_51CTO博客
模拟链接A 第一个水题要知道units digit的意思 (个位数)有一点点小繁琐。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 #defin...
转载 2014-07-07 17:07:00
86阅读
2评论
Problem D: Tetrahedron InequalityTime Limit:1 Sec Memory Limit:128 MB Submit:15 Solved:3 [ Submit][ Status][ Web Board] DescriptionIt is well known that you cannot make a triangle with non-zero area whose sides have lengths 1, 2, 3. Can you make a tetrahedron(四面体) with non-zero volume whose...
转载 2013-07-15 21:11:00
104阅读
2评论
今年又要打邀请赛了,前段时间做比赛都被虐的够呛,感觉不会再爱了。。。所以挂了下
转载 2014-06-24 15:36:00
56阅读
2评论
A:2016 2016 Given a 2×2 matrix A=(a11a21a12a22), find An where A1=A,An=A×An−1. As the result may be large, you are going to find only the remainder af
转载 2016-06-13 19:31:00
84阅读
2评论
总题解:http://www.nike0good.com/674.html 1001: 2017ACM/ICPC广西邀请赛-重现 1001 A Math Problem #include <iostream> #include <cstdio> #define ull unsigned long
转载 2017-08-31 18:59:00
102阅读
2评论
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1246 题意: 有n只怪,每只怪有指定的HP。现在1和2两种攻击方式,前者扣2滴血,后者扣3滴血。输出f(0)+f(1)+...f(m), f(i)表示求在1攻击方式最多只能用
转载 2017-04-19 20:22:00
40阅读
Problem Description There are n planets in the MOT galaxy, and each planet has a unique number from 1∼n. Each planet is connected to other planets through some transmission channels. There are m tran...
转载 2019-07-30 20:40:00
71阅读
2评论
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1244 题意:有a个红球,b个绿球,c个黄球,先拿完a个红球一等奖,先拿完b个绿球二等奖,c个黄球三等奖。求各个奖获奖的概率。 思路: 分析首先拿完红球,即拿一等奖的概率: 我
转载 2017-04-19 20:06:00
46阅读
2评论
先给出一个s母串 然后给出n个子串 判断是否为母串的子序列 3000ms 2993ms过的。。。。 蒻鲫的代码: 建立表格 二分 加一个小剪枝。。 #include<bits/stdc++.h> using namespa
转载 2019-04-21 10:39:00
123阅读
2评论
A:#include #include int main() { int T; scanf("%d", &T); while(T --) { double x, ans = 0; for(int i = 0; i < 12;i ++) { scanf("%lf", &x); ans += x; } ans /= 12; char b[1000];
原创 2021-08-13 13:50:49
113阅读
HDU 4565 So Easy!类似fib的构造设Fn = x + y*sqrt(b)啪啦啪啦#include #include #include #include #include using namespace std;typedef vector vec;typedef vector mat;typedef long long ll;ll a, b,
原创 2021-08-13 13:55:58
178阅读
【题目链接】:https://acm.zzuli.edu.cn/zzuliacm/problem.php?id=2129【题意】 【题解】 NMB 直接说i-1,i-2,i-3不就好了… 【Number Of WA】 0 【完整代码】#include using namesp...
转载 2017-10-04 18:44:00
50阅读
2评论
A:#include <cstdio>#include <cstring>int main() { int T; scanf("%d", &T); while(T --) { double x, ans = 0; for(int i = 0; i < 12;i ++) { scanf("%lf", &x); ans
转载 2017-08-04 08:31:00
32阅读
2评论
此行的时间很赶,周五出发周日回,杭州到湘潭,坐的是火车,还是比较累的。周六早上到,翻山越岭找到了宾馆,休息了一会儿就去找网吧了,因为下午还有一场团体天梯。在网吧里待了三个多小时,这场初赛的题目相对上次的模拟题来说好像稍微好写一点,不过因为没带纸和笔,最后一题没仔细的推算,只能搞个26分。从网吧出来去了考场报到顺便参加热身,题目据说是去年的题,然而英文各种看不懂,身心疲惫下爆零而归,凄凉QAQ。
原创 2022-11-10 01:18:58
114阅读
行程安排:行程体验:坐坐车,旅旅游,面面基,体验极佳(主要是不要花自己的钱)。比赛体验:四道签到题(L E K B)后就 AC 了,...
原创 2022-09-23 11:44:24
82阅读
这次的没学过的算法多了起来。尽管我都猜对了是用什么算法(我仅仅知道大体上各算法的原理,但没写过。。)。。还有翻译上的严重失误。这次太慘了。。。差点挂零。。 这次比赛的pdf地址:http://poj.org/ProblemDescriptions/jinghua.pdf A题: 题目地址:POJ 4
转载 2017-04-30 19:37:00
63阅读
2评论
A:点击打开链接构造,结论是从第一行开始往下产生一条曲线,使得这条区间最长且从上到下递减,
原创 2021-08-13 14:05:05
107阅读
A:SUM 水。 1 #include<bits/stdc++.h> 2 3 using namespace std; 4 5 #define N 100010 6 typedef long long ll; 7 8 int n; 9 ll arr[N]; 10 ll sum[N]; 11 12 i
转载 2018-08-14 20:02:00
86阅读
2评论
【题目链接】:https://acm.zzuli.edu.cn/zzuliacm/problem.php?id=2130【题意】 【题解】 把那个管泛化成一个点; 然后把每一个在管里面的点都和它相连; 然后从起点跑bfs就好; 最后输出dis[n]/2 +1 因为是点的数目所以要加...
转载 2017-10-04 18:44:00
87阅读
2评论
HDU 4565 So Easy! 类似fib的构造 设Fn = x + y*sqrt(b) 啪啦啪啦 #include <cstdio> #include <cstring> #include <vector> #include <cmath> #include <iostream> using namespace std;
转载 2017-06-28 18:01:00
89阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5