June Challenge 2017】的更多相关文章

好气啊,本来以为比赛时间还有很多,结果回家养病两天回到学校怎么比赛就结束了(雾),大约是小高考弄错了时间? 挑3道有意思的写写题解吧. Cloning 题目大意:给一个序列,每次询问两个等长区间,问区间内的数是否排序后至多只有一个对应位不同. 题解:主席树维护一下hash,求出最大的k,使得两个区间中的前k大在排序后相同,然后判一下后缀即可. #include<cstdio> #include<algorithm> #define MN 110000 #define ull uns…
A Good Set 分析:水题,选奇数即可 #include "iostream" #include "cstdio" #include "cstring" #include "cmath" using namespace std; //const int maxn=110; int T; int n; int main() { cin>>T; while(T--) { cin>>n; ;i<n…
Mujin Programming Challenge 2017 A - Robot Racing 如果每个数都是一个一个间隔开的,那么答案是\(n!\) 考虑把一个数挪到1,第二个数挪到3,以此类推,如果不行,证明前面中有个数肯定会被选择,所以任意选一个数到终点,继续这样的操作 最后剩下的乘一个阶乘即可 #include <bits/stdc++.h> #define fi first #define se second #define pii pair<int,int> #de…
Hope for the best, but prepare for the worst. 做最好的期望,做最坏的打算. Always remember that quotes about being ourselves are all about being strong and being confident in whatever we are doing and never give up. This is why self-development is so important, we…
Whatever is worth doing is worth doing well. 任何值得做的,就把它做好. Whatever is worth doing is worth doing well, that can be seen as a guideline in our life and work. Once we have evaluated the feasibility of one project, if we think it is worthing doing, we…
It is not the mountain we conquer but outselves. 我们要征服的不是高山,而是我们自己. After days of hard working, I sliding into the idling state again. Looking at the screen, with the program opened in the IDE, but I didn't tap any new code to perfect it. Just let th…
Do what you say, say what you do. 做你说过的,说你能做的. Do what I have said, live up to my promise, answer the expectations with gold. Sometimes we have to boast a little more than what we have done. It is just an effective tactic to win. However, if we boast…
综述 我在全面剖析了自身的特质以后,针对于工程技术领域的经验丰富优势.科学研究领域的理论薄弱劣势.我制定了全面夯实科学研究理论基础的学习计划.全面提高效率抓大放小的精力分配原则. 执行成果 线性代数(包括矩阵LU分解.奇异值分解) - 完成 概率论 - 完成 梯度 - 完成 <层次分析法>和<集合论>两篇论文 - 针对数学建模 - 完成 <机器学习>周志华 - 已完成前三章 英语新闻听写 - 150分钟 - 完成 阅读<踏踏实实学英语>- 英语新闻听写的指导…
CALC: 计算器题目描述大厨有一个计算器,计算器上有两个屏幕和两个按钮.初始时每个屏幕上显示的都是 0.每按一次第一个按钮,就会让第一个屏幕上显示的数字加 1,同时消耗 1 单位的能量.每按一次第二个按钮,会让第二个屏幕上显示的数字加上第一个屏幕上显示的数字,同时消耗 B 单位的能量.初始时,计算器有 N 单位的能量.大厨想知道在能量限制下,第二个屏幕上最大可以出现的数字是多少?输入格式输入的第一行包含一个整数 T,代表测试数据的组数.接下来是 T 组数据.每组数据仅有一行,包含两个整数 N…
CHEFSIGN: 大厨与符号序列题目描述大厨昨天捡到了一个奇怪的字符串 s,这是一个仅包含‘<’.‘=’和‘>’三种比较符号的字符串.记字符串长度为 N,大厨想要在字符串的开头.结尾,和每两个字符之间插入一个正整数,共N + 1 个数.大厨希望插入数字之后,这些比较符号所表达的含义是正确的.举个例子,如果在‘<’前后分别插入 a 和 b,那么应当有 a < b.对于‘=’和‘>’也是类似的.大厨可以在 [1, P] 中任意选择数字插入,同一个数也可以被插入到多个位置.请你帮…