第五场和第六场多校都打得很糟糕。

  能做到不以物喜不以己悲是假的,这对队伍的情绪也可以算上是比较大的打击。

  很多时候我们发现了问题,但是依旧没有采取有效的方法去解决它,甚至也没有尝试去改变。这是一件相当糟糕的事情,因为,有的时候,态度决定了实力发挥的稳定性。

  在第五场和第六场多校中,问题暴露的特别明显。读题,罚时,还有代码的细致性。

  知识结构上,高级一些字符串的匹配题需要补上,DP这一块需要加强,还有就是计算几何,数学的板子要尽可能多的收集。

  第五场多校DP题偏多,第六场多校数学规律题比较多。

  然而这也并不是借口去逃避,比我们优秀的队伍就摆在那里,他们的水平并不会受题型的影响。所以归根结底,就是实力不济吧。

  我个人方面,读题比较毛躁,而且思路比较中规中矩,当题目做法偏离我认知范围的时候就会卡死,这一点或许就像磊哥说的,路途中的人和集大成者的差别。所以我只能做,我会,或者跳一跳能够着的题。对于更奇巧的思路,也许缺了一些胆气。然后是对繁琐代码的恐惧,很害怕写复杂代码,或者不常接触的算法类型。这些现阶段只能够通过扩大做题的算法接触面来稍微改善一些。

  很多问题,都是变得更强一些能够直接解决的,不管算法上还是经验上。

  大多数情况下,个人问题也同时是团队的问题,就像多校第六场欣君说他背03的锅,因为打表打错了,然而在这个苦思冥想不得其解的一个小时,我们早可以重新打个表验证一下,然而我没有这么做,我盯着欣君的表,郁闷了那么久。

  这两场比赛算是敲响了警钟吧,接下来会发挥得更好的。

  不管我们用积极或者消极的眼光看待,我们都需要信仰来做一些事情。

  愿我在大部分时间里,做一个努力的人。

  而不是在深夜感慨,一日的碌碌无为。

2016 Multi-University Training Contest 5&6 总结的更多相关文章

  1. 2016 Al-Baath University Training Camp Contest-1

    2016 Al-Baath University Training Camp Contest-1 A题:http://codeforces.com/gym/101028/problem/A 题意:比赛 ...

  2. 2016 Al-Baath University Training Camp Contest-1 E

    Description ACM-SCPC-2017 is approaching every university is trying to do its best in order to be th ...

  3. 2016 Al-Baath University Training Camp Contest-1 A

    Description Tourist likes competitive programming and he has his own Codeforces account. He particip ...

  4. 2016 Al-Baath University Training Camp Contest-1 J

    Description X is fighting beasts in the forest, in order to have a better chance to survive he's gon ...

  5. 2016 Al-Baath University Training Camp Contest-1 I

    Description It is raining again! Youssef really forgot that there is a chance of rain in March, so h ...

  6. 2016 Al-Baath University Training Camp Contest-1 H

     Description You've possibly heard about 'The Endless River'. However, if not, we are introducing it ...

  7. 2016 Al-Baath University Training Camp Contest-1 G

    Description The forces of evil are about to disappear since our hero is now on top on the tower of e ...

  8. 2016 Al-Baath University Training Camp Contest-1 F

    Description Zaid has two words, a of length between 4 and 1000 and b of length 4 exactly. The word a ...

  9. 2016 Al-Baath University Training Camp Contest-1 D

    Description X is well known artist, no one knows the secrete behind the beautiful paintings of X exc ...

  10. 2016 Al-Baath University Training Camp Contest-1 C

    Description Rami went back from school and he had an easy homework about bitwise operations (and,or, ...

随机推荐

  1. android XML格式颜色

    <!--android:background="@color/"-> <?xml version="1.0" encoding="u ...

  2. linux 进程(一)---基本概念

    一.进程的定义         进程是操作系统的概念,每当我们执行一个程序时,对于操作系统来讲就创建了一个进程,在这个过程中,伴随着资源的分配和释放.可以认为进程是一个程序的一次执行过程.   二.进 ...

  3. 克拉夫斯曼高端定制 刘霞---【YBC中国国际青年创业计划】

    克拉夫斯曼高端定制 刘霞---[YBC中国国际青年创业计划] 克拉夫斯曼高端定制 刘霞

  4. Android UI SurfaceView的使用-绘制单个图型或多个图形

    新建MyView类继承自SurfaceView: public class MyView extends SurfaceView implements SurfaceHolder.Callback { ...

  5. Struts2 四、Struts2 处理流程

    1. 一个请求在Struts2框架中的处理步骤: a) 客户端初始化一个指向Servlet容器的请求: b) 根据Web.xml配置,请求首先经过ActionContextCleanUp过滤器,其为可 ...

  6. 递归与arguments.callee;

    <!doctype html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  7. react-native component function

    examples: use:

  8. Fix The thread xxx has exited with code 259 (0×103)

    When run the test case in VS2013, you may encounter below problem After test case end, it will show ...

  9. Java基础学习笔记2-循环

    while循环与do while循环: while循环的格式: while(条件表达式) { 执行语句; } do while循环格式: do { 执行语句; } while(条件表达式); do w ...

  10. 8种排序算法的C#实现

    排序是将一个数据元素(或记录)的任意序列,重新排列成一个按关键字有序的序列.排序根据涉及的存储器的不同分为内部排序和外部排序:内部排序是指待排序记录存放在内存进行的排序过程:外部排序是指待排序记录的数 ...