有目标,并且要付诸于实践,才有可能成功。 比如当年高中时成绩一直无法进步,下学期又要开新的生物课程。于是自己就立了一个目标,生物这个突破口。 于是我就在军训的时候就把生物课外书看了奖金一般。果不其然,最后生物全班第一,成功晋级前20名。 不管最后高考怎样,但是那个时候,我还是成功了。 说明: 1. ...
分类:
其他好文 时间:
2020-01-30 17:21:17
阅读次数:
59
1.两点间距离(10min) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2001 Problem Description 输入两点坐标(X1,Y1),(X2,Y2),计算并输出两点间的距离。 Input 输入数据有多组,每组占一行,由4个实数组成, ...
分类:
其他好文 时间:
2020-01-30 17:15:24
阅读次数:
49
迎各位老师同学关注和参加CVPR2020人脸心率估计竞赛,结果提交截止日期:3月5日:https://competitions.codalab.org/competitions/22287,500+人的训练集已开放下载(先在codalab注册参赛,然后填写数据申请协议即可)。介绍如下: Challe ...
分类:
其他好文 时间:
2020-01-30 09:30:28
阅读次数:
258
题目:P1559 https://www.luogu.com.cn/problem/P1559 羽毛球队有男女运动员各n人。给定2 个n×n矩阵P和Q。P[i][j]是男运动员i和女运动员j配对组成混合双打的男运动员竞赛优势;Q[i][j]是女运动员i和男运动员j配合的女运动员竞赛优势。由于技术配合 ...
分类:
其他好文 时间:
2020-01-30 09:19:16
阅读次数:
66
lowbit(x) : 返回x的最后一位1 lowbit(100010) = 10 lowbit(11011000) = 1000 lowbit(x) = x&(-x) = x & (~x+1) : -x x的补码 = x 取反+1 给定一个长度为n的数列,请你求出数列中每个数的二进制表示中1的个数 ...
分类:
编程语言 时间:
2020-01-29 21:52:22
阅读次数:
53
题目链接:https://ac.nowcoder.com/acm/contest/3570/H #include <iostream> #include <algorithm> #include <string> #include <string.h> #include <vector> #incl ...
分类:
其他好文 时间:
2020-01-29 21:19:01
阅读次数:
132
"Fat and docile, big and dumb, they look so stupid, they aren't muchfun..."- Cows with Guns by Dana LyonsThe cows want to prove to the public that the ...
分类:
其他好文 时间:
2020-01-29 15:55:06
阅读次数:
107
A straight dirt road connects two fields on FJ's farm, but it changes elevation more than FJ would like. His cows do not mind climbing up or down a si ...
分类:
其他好文 时间:
2020-01-29 15:43:18
阅读次数:
94
http://acm.hdu.edu.cn/showproblem.php?pid=1541 题意:二维平面坐标上,给出n个星星的坐标,规定每个星星的左下方向的星星数量为该星星的等级。 统计1-n-1等级的数量。 解法:因为给出顺序的特殊性,可以用树状数组统计各星星的等级。 注意两点:1、该题为多组 ...
分类:
其他好文 时间:
2020-01-28 21:30:23
阅读次数:
69
Hey Guys I am back to my path of training, I am currently studying at UNSW and i am preparing to do ACM-ICPC in my uni life. I will be recording my tr ...
分类:
其他好文 时间:
2020-01-28 21:06:35
阅读次数:
69