#include <bits/stdc++.h>
using namespace std;
template <typename T>
class SegTreeLazyRangeSet {
vector<T> tree, lazy;
vector<T> *arr;
int n, root, n4, end;
void maintain(int cl, int cr, int p)...
英文文章 | 文章字数 | 测试时长 | 准确率 | 速度 | 退格数 | 出错数 | 成绩 |
---|---|---|---|---|---|---|---|
《线段树模板/带修线段树模板/c++》 | 1999字 | 2.0分钟 | 27% | 199 CPM | 27 次 | 1071 | 不及格,错误太多! |
本次出错的字 <,T,>,,t,r,e,e,,,,l,a,z,y,;,v,e,c,t,o,r,<,T,>,*,a,r,r,;,i,n,t,n,,,r,o,o,t,,,n,4,,,e,n,d,;,v,o,i,d,m,a,i,n,t,a,i,n,(,i,n,t,c,l,,,i,n,t,c,r,,,i,n,t,p,),{,i,n,t,c,m,=,c,l,+,(,c,r,-,c,l,),/,2,;,i,f,(,c,l,!,=,c,r,&,&,l,a,z,y,[,p,],),{,l,a,z,y,[,p,*,2,],=,l,a,z,y,[,p,],;,l,a,z,y,[,p,*,2,+,1,],=,l,a,z,y,[,p,],;,t,r,e,e,[,p,*,2,],=,l,a,z,y,[,p,],*,(,c,m,-,c,l,+,1,),;,t,r,e,e,[,p,*,2,+,1,],=,l,a,z,y,[,p,],*,(,c,r,-,c,m,),;,l,a,z,y,[,p,],=,0,;,},},T,r,a,n,g,e,_,s,u,m,(,i,n,t,l,,,i,n,t,r,,,i,n,t,c,l,,,i,n, | |||||||
小小建议:
正确率比较低,多观察一下出错的字加以修正,一般来讲都要达到95%以上比较好。
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
励志名言: 不管别人的嘲弄,只要默默地坚持到底,换来的就是别人的羡慕。 ——松下幸之助 |