CodeForces #444 Div2 被虐记

突然想到lmh之前写的一篇文章反思自己noip训练营粗心的。。。我现在也来反思一下qwq...

A题。无难度直接切。。怎么写都能过==

B题&&C题

本来以为是思路的锅,可是没想到。。。

B题我有一句>=100写成了>100结果100的时候直接给false了,然后就wa...

C题我打了个很大的表。。。就是关于旋转的情况的,因为某不知名原因我打错了然后wa了两次改了两个错误这才pp...

于是从本来的600多名掉到了1000+名...qwq...然后这个C最后是FST了(还好unreted2333)FST的原因是吧"=="打成了"="结果整条语句都变成了false,然后就w了qwq....

今天的比赛让我想起了GDOI2017的考场失利

数组开太大啊,用pas处理string类型没开ansistring啊之类的,这都反映了我粗心大意的毛病,文化课也是这样,明明自己会的题一定会给抄错答案啊还是带错数字之类的。

今天立下此记,引以为戒!

哦这个是代码

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<vector>
 6 #include<set>
 7 #include<queue>
 8 #include<algorithm>
 9 using namespace std;
10 #define ll long long
11 inline int read()
12 {
13     int x=0,f=1;char ch=getchar();
14     while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}
15     while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}
16     return x*f;
17 }
18 int main()
19 {
20     char c[100];scanf("%s",c);
21     for(int i=0;i<strlen(c);i++)
22         if(c[i]==‘1‘)
23         {
24             int ans=0;
25             for(int j=i+1;j<strlen(c);j++) if(c[j]==‘0‘) ans++;
26             if(ans>=6)
27             {
28                 puts("yes");return 0;
29             }
30         }
31     puts("no");
32 }

A

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<vector>
 6 #include<set>
 7 #include<queue>
 8 #include<algorithm>
 9 using namespace std;
10 #define ll long long
11 inline int read()
12 {
13     int x=0,f=1;char ch=getchar();
14     while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();}
15     while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();}
16     return x*f;
17 }
18 int n,a[4][10];
19 bool check(int x)
20 {
21     if(x>=10&&x<100)
22         return (a[1][x/10]&&a[2][x%10])||(a[1][x/10]&&a[3][x%10])||(a[2][x/10]&&a[3][x%10])||(a[1][x%10]&&a[2][x/10])||(a[1][x%10]&&a[3][x/10])||(a[2][x%10]&&a[3][x/10]);
23     if(x>=100)
24         return (a[1][x/100]&&a[2][(x%100)/10]&&a[3][x%10])||(a[1][(x%100)/10]&&a[2][x/100]&&a[3][x%10])||(a[1][x%10]&&a[2][(x%100)/10]&&a[3][x/100])||(a[3][x/100]&&a[1][(x%100)/10]&&a[2][x%10])||(a[2][x/100]&&a[3][(x%100)/10]&&a[1][x%10]);
25     if(x<10) return a[1][x]||a[2][x]||a[3][x];
26 }
27 int main()
28 {
29     n=read();memset(a,0,sizeof(a));
30     for(int i=1;i<=n;i++)
31         for(int j=1;j<=6;j++) a[i][read()]=1;
32     for(int i=1;i<=999;i++)
33         if(check(i))continue;
34         else{printf("%d\n",i-1);return 0;}
35 }

B

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<vector>
 6 #include<set>
 7 #include<queue>
 8 #include<algorithm>
 9 using namespace std;
10 #define ll long long
11 int c[25];
12 bool check()
13 {
14     if(c[5]==c[6]&&c[6]==c[7]&&c[7]==c[8]&&c[21]==c[22]&&c[22]==c[23]&&c[23]==c[24])
15     {
16         if(c[3]==c[4]&&c[4]==c[18]&&c[18]==c[20]&&c[17]==c[19]&&c[19]==c[11]&&c[11]==c[12]&&c[9]==c[10]&&c[10]==c[13]&&c[13]==c[15]&&c[14]==c[16]&&c[16]==c[1]&&c[1]==c[2])return 1;
17         else
18         if(c[1]=c[2]&&c[2]==c[17]&&c[17]==c[19]&&c[18]==c[20]&&c[20]==c[9]&&c[9]==c[10]&&c[11]==c[12]&&c[12]==c[14]&&c[14]==c[16]&&c[13]==c[15]&&c[15]==c[3]&&c[3]==c[4])return 1;
19         return 0;
20
21     }
22     if(c[1]==c[2]&&c[2]==c[3]&&c[3]==c[4]&&c[9]==c[10]&&c[10]==c[11]&&c[11]==c[12])
23     {
24         if(c[13]==c[14]&&c[14]==c[7]&&c[7]==c[8]&&c[5]==c[6]&&c[6]==c[19]&&c[19]==c[20]&&c[17]==c[18]&&c[18]==c[23]&&c[23]==c[24]&&c[21]==c[22]&&c[22]==c[15]&&c[15]==c[16])return 1;
25         else
26         if(c[5]==c[6]&&c[6]==c[15]&&c[15]==c[16]&&c[17]==c[18]&&c[18]==c[7]&&c[7]==c[8]&&c[21]==c[22]&&c[22]==c[19]&&c[19]==c[20]&&c[13]==c[14]&&c[14]==c[23]&&c[23]==c[24])return 1;
27         return 0;
28
29     }
30     if(c[13]==c[14]&&c[14]==c[15]&&c[15]==c[16]&&c[17]==c[18]&&c[18]==c[19]&&c[19]==c[20])
31     {
32         if(c[1]==c[3]&&c[3]==c[6]&&c[6]==c[8]&&c[5]==c[7]&&c[7]==c[10]&&c[10]==c[12]&&c[9]==c[11]&&c[11]==c[21]&&c[21]==c[23]&&c[2]==c[4]&&c[4]==c[22]&&c[22]==c[24])return 1;
33         else
34         if(c[2]==c[4]&&c[4]==c[5]&&c[5]==c[7]&&c[6]==c[8]&&c[8]==c[9]&&c[9]==c[11]&&c[10]==c[12]&&c[12]==c[22]&&c[22]==c[24]&&c[1]==c[3]&&c[3]==c[21]&&c[21]==c[23])return 1;
35         return 0;
36     }
37     return 0;
38 }
39 int main()
40 {
41     for(int i=1;i<=24;i++)scanf("%d",&c[i]);
42     //if(c[5]==c[6]&&c[6]==c[7]&&c[7]==c[8]&&c[21]==c[22]&&c[22]==c[23]&&c[23]==c[24]) printf("%d",(c[3]==c[4]&&c[4]==c[18]&&c[18]==c[20]&&c[17]==c[19]&&c[19]==c[11]&&c[11]==c[12]&&c[9]==c[10]&&c[10]==c[13]&&c[13]==c[15]&&c[14]==c[16]&&c[16]==c[1]&&c[1]==c[2]));
43     //printf("%d",(c[1]=c[2]&&c[2]==c[17]&&c[17]==c[19]&&c[18]==c[20]&&c[20]==c[9]&&c[9]==c[10]&&c[11]==c[12]&&c[12]==c[14]&&c[14]==c[16]&&c[13]==c[15]&&c[15]==c[3]&&c[3]==c[4])||(c[3]==c[4]&&c[4]==c[18]&&c[18]==c[20]&&c[17]==c[19]&&c[19]==c[11]&&c[11]==c[12]&&c[9]==c[10]&&c[10]==c[13]&&c[13]==c[15]&&c[14]==c[16]&&c[16]==c[1]&&c[1]==c[2]));
44     printf("%s",check()?"YES":"NO");
45 }

C

时间: 2024-10-28 08:57:04

CodeForces #444 Div2 被虐记的相关文章

codeforces 444 C. DZY Loves Colors(线段树)

题目大意: 1 l r x操作 讲 [l,r]上的节点涂成x颜色,并且每个节点的值都加上 |y-x| y为涂之前的颜色 2 l r  操作,求出[l,r]上的和. 思路分析: 如果一个区间为相同的颜色.那么我们才可以合并操作. 所以我们之前找相同的区间就好. 但是问题是如何合并操作. 那么我们定义一个val  表示这个区间每个位置上应该加上的值. pushdown 的时候这个值是可以相加的. #include <cstdio> #include <iostream> #includ

Codeforces 583 DIV2 Robot&#39;s Task 贪心

原题链接:http://codeforces.com/problemset/problem/583/B 题意: 就..要打开一个电脑,必须至少先打开其他若干电脑,每次转向有个花费,让你设计一个序列,使得总花费最小. 题解: 就傻傻的走就好..从左走到右,再走回来,更新序列和答案就好. 代码: #include<iostream> #include<cstring> #include<algorithm> #include<cstdio> #define MA

Codeforces #180 div2 C Parity Game

// Codeforces #180 div2 C Parity Game // // 这道题的题目意思就不解释了 // // 题目有那么一点难(对于我而言),不多说啦 // // 解题思路: // // 首先如果a串和b串相等,不多说直接YES // 如果b串全是0,直接YES // 注意到a串有一个性质,1的个数不会超过本身的加1. // a有个1的上限设为x,b有个1的个数设为y,则如果x < y // 那么直接NO. // // 现在一般情况下,就是模拟啦,找到a的后缀和b的前缀一样的

Codeforces #246(div2)

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <ti

Codeforces #245(div2)

A:A. Points and Segments (easy) 题目看了n久,开始觉得尼玛这是div2的题目么,题目还标明了easy.. 意思是给你一n个点,m个区间,在n个点上放蓝球或者红球,然后让你找一种选择方案使得m个区间内的蓝球和红球数量之差不超过1. 开始想过用dfs,不过这只是div2的A题而已.. 然后想了下,直接输出010101序列不就可以么. 交了一发,发现要先排个序,再输出就可以了. AC代码: #include<iostream> #include<cstdio&g

codeforces#327 div2

codeforces#327 div2 这场状态不好有点可惜,题目都不难,而且很好.. A题:水题. #include<bits/stdc++.h> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a) memset(a,0,sizeof(a)) #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 using namespace std; typedef lo

codeforces#FF(div2) DZY Loves Sequences

n个数,可以任意改变其中一个数,求最长的上升子区间长度 思路:记录一个from[i]表示从位置i的数开始最长的上升区间长度 记录一个to[i]表示到位置i的数所能达到的最长上升区间长度 枚举要改变的数的位置i,此时能达到的长度为to[i - 1] + from[i + 1] + 1,取最大值 //#pragma comment(linker, "/STACK:102400000,102400000") //HEAD #include <cstdio> #include &l

Codeforces 258 Div2

A题,n*m根木棍,相交放置,轮流取走相交的两根,最后谁不能行动,则输掉. min(n,m)&1 为1则先取者赢. B题,给定一个长度为n,且各不相同的数组,问能否通过交换连续一段L....R使得变成单调递增. 如果一开始就是递增的,那么直接输出L...R就是1 1,交换一个就行了:否则判断中间是否有且一段单调递减,且两端交换后使得数组递增. 代码: 1 //Template updates date: 20140718 2 #include <iostream> 3 #include

Codeforces #263 div2 解题报告

比赛链接:http://codeforces.com/contest/462 这次比赛的时候,刚刚注册的时候很想好好的做一下,但是网上喝了个小酒之后,也就迷迷糊糊地看了题目,做了几题,一觉醒来发现rating掉了很多,那个心痛啊! 不过,后来认真的读了题目,发现这次的div2并不是很难! 官方题解:http://codeforces.com/blog/entry/13568 A. Appleman and Easy Task 解析: 一个水题,判断每个细胞周围是否都是有偶数个相邻细胞.   代码