Codeforces Beta Round #7

Codeforces Beta Round #7

http://codeforces.com/contest/7

A

水题

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 #define lson l,mid,rt<<1
 4 #define rson mid+1,r,rt<<1|1
 5 #define sqr(x) ((x)*(x))
 6 #define maxn 1000010
 7 typedef long long ll;
 8 /*#ifndef ONLINE_JUDGE
 9         freopen("1.txt","r",stdin);
10 #endif */
11
12 string str[15];
13 int book[15][15];
14
15 int Check1(int x){//lie
16     for(int i=0;i<8;i++){
17         if(str[i][x]!=‘B‘) return 0;
18     }
19     int ans=0;
20     for(int i=0;i<8;i++){
21         if(book[i][x]==0) book[i][x]=1,ans=1;
22     }
23     return ans;
24 }
25
26 int Check2(int x){
27     for(int i=0;i<8;i++){
28         if(str[x][i]!=‘B‘) return 0;
29     }
30     int ans=0;
31     for(int i=0;i<8;i++){
32         if(book[x][i]==0) book[x][i]=1,ans=1;
33     }
34     return ans;
35 }
36
37
38 int main(){
39     #ifndef ONLINE_JUDGE
40         freopen("1.txt","r",stdin);
41     #endif
42     std::ios::sync_with_stdio(false);
43     for(int i=0;i<8;i++) cin>>str[i];
44     int ans=0;
45     for(int i=0;i<8;i++){
46         ans+=Check1(i);
47     }
48     for(int i=0;i<8;i++){
49         ans+=Check2(i);
50     }
51     cout<<ans<<endl;
52 }

B

模拟题

  1 #include<bits/stdc++.h>
  2 using namespace std;
  3 #define lson l,mid,rt<<1
  4 #define rson mid+1,r,rt<<1|1
  5 #define sqr(x) ((x)*(x))
  6 #define maxn 1000010
  7 typedef long long ll;
  8 /*#ifndef ONLINE_JUDGE
  9         freopen("1.txt","r",stdin);
 10 #endif */
 11
 12 int t,n,m;
 13 int book[105];
 14 struct sair{
 15     int first,last;
 16     int flag,pos;
 17 }a[105];
 18
 19 bool Check(int pos){
 20     int i;
 21     if(pos+n>m+1) return false;
 22     for(i=pos;i<pos+n;i++){
 23         if(book[i]){
 24             return false;
 25         }
 26     }
 27     return true;
 28 }
 29
 30 bool cmp(sair a,sair b){
 31     if(a.flag==b.flag)
 32         return a.first<b.first;
 33     return a.flag>b.flag;
 34 }
 35
 36 bool cmp2(sair a,sair b){
 37     return a.pos<b.pos;
 38 }
 39
 40 int main(){
 41     #ifndef ONLINE_JUDGE
 42         freopen("1.txt","r",stdin);
 43     #endif
 44     std::ios::sync_with_stdio(false);
 45     cin>>t>>m;
 46     string str;
 47     int co=1;
 48     int i;
 49     for(int i=1;i<=100;i++){
 50         a[i].flag=0;
 51         a[i].pos=i;
 52     }
 53     while(t--){
 54         cin>>str;
 55         if(str=="alloc"){
 56             cin>>n;
 57             for(i=1;i<=m;i++){
 58                 if(Check(i)){
 59                   //  cout<<book[i]<<" "<<i<<"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhh"<<endl;
 60                     a[co].first=i,a[co].last=i+n-1;
 61                     a[co].flag=1;
 62                  //   cout<<a[co].first<<" "<<a[co].last<<"hhhhhhhhhhhh"<<endl;
 63                     for(int j=a[co].first;j<=a[co].last;j++) book[j]=1;
 64                     cout<<co<<endl;
 65                     co++;
 66                     break;
 67                 }
 68             }
 69             if(i==m+1){
 70                 cout<<"NULL"<<endl;
 71             }
 72         }
 73         else if(str=="erase"){
 74             cin>>n;
 75             if(n<1||n>101){
 76                 cout<<"ILLEGAL_ERASE_ARGUMENT"<<endl;
 77                 continue;
 78             }
 79             if(a[n].flag==0){
 80                 cout<<"ILLEGAL_ERASE_ARGUMENT"<<endl;
 81             }
 82             else{
 83                 a[n].flag=0;
 84                 for(i=a[n].first;i<=a[n].last;i++){
 85                     book[i]=0;
 86                 }
 87             }
 88         }
 89         else{
 90             memset(book,0,sizeof(book));
 91             sort(a+1,a+co,cmp);
 92             int pos=1;
 93             for(i=1;i<co;i++){
 94                 if(a[i].flag){
 95                     for(int j=a[i].first;j<=a[i].last;j++){
 96                         book[pos++]=1;
 97                     }
 98                     int tmp=a[i].last-a[i].first;
 99                     a[i].last=pos-1;
100                     a[i].first=a[i].last-tmp;
101                 }
102             }
103             sort(a+1,a+co,cmp2);
104         }
105       //  for(int i=1;i<=3;i++) cout<<book[i]<<" hhhhhh"<<endl;
106     }
107 }

C

扩展欧几里德模板题

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 #define lson l,mid,rt<<1
 4 #define rson mid+1,r,rt<<1|1
 5 #define sqr(x) ((x)*(x))
 6 #define maxn 1000010
 7 typedef long long ll;
 8 /*#ifndef ONLINE_JUDGE
 9         freopen("1.txt","r",stdin);
10 #endif */
11
12 void gcd(long long a,long long b,long long &d,long long &x,long long &y){
13     if(!b){
14         d=a;
15         x=1;
16         y=0;
17     }
18     else{
19         gcd(b,a%b,d,y,x);
20         y-=x*(a/b);
21     }
22 }
23 int main(){
24     #ifndef ONLINE_JUDGE
25         freopen("1.txt","r",stdin);
26     #endif
27     long long a,b,c,d,x,y;
28     scanf("%lld%lld%lld",&a,&b,&c);
29     gcd(a,b,d,x,y);
30     if(c%d)
31         printf("-1\n");
32     else
33         printf("%lld %lld\n",-x*c/d,-y*c/d);
34
35 }

D

字符串hash(好题)

思路:把字符串的前缀正着hash和倒着hash,比较hash值

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 #define lson l,mid,rt<<1
 4 #define rson mid+1,r,rt<<1|1
 5 #define sqr(x) ((x)*(x))
 6 #define maxn 1000010
 7 typedef long long ll;
 8 /*#ifndef ONLINE_JUDGE
 9         freopen("1.txt","r",stdin);
10 #endif */
11
12 char str[5000005];
13 ll dp[5000005];
14 int main(){
15     #ifndef ONLINE_JUDGE
16         freopen("1.txt","r",stdin);
17     #endif
18     scanf("%s",str+1);
19     ll ans=0;
20     ll t1=0,w1=0,p=121,num=1;
21     int len=strlen(str+1);
22     for(int i=1;i<=len;i++){
23         t1=t1*p+str[i];
24         w1=num*str[i]+w1;
25         num*=p;
26         if(t1==w1){
27             dp[i]=dp[i/2]+1;
28             ans+=dp[i];
29         }
30     }
31     printf("%lld\n",ans);
32 }

E(待补)

原文地址:https://www.cnblogs.com/Fighting-sh/p/10350698.html

时间: 2024-11-09 00:33:13

Codeforces Beta Round #7的相关文章

Codeforces Beta Round #91 (Div. 1 Only) E. Lucky Array

E. Lucky Array Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467are not. Petya has an arra

Codeforces Beta Round #85 (Div. 1 Only) C (状态压缩或是数学?)

C. Petya and Spiders Little Petya loves training spiders. Petya has a board n × m in size. Each cell of the board initially has a spider sitting on it. After one second Petya chooses a certain action for each spider, and all of them humbly perform it

CodeForces Beta Round #1

Codeforces Beta Round #1 A. Theatre Square [题意]一个n*m的矩形广场,用a*a的方形石板铺设,问最少需要多少块石板能铺满广场. [思路]水题,从n方向来看能能够铺设ceil(n/a)块,从m方向来看能能够铺设ceil(m/a)块,总共有ceil(n/a)*ceil(m/a)块. 1 /* 2 ** CodeForces 1A Theatre Square 3 ** Created by Rayn @@ 2014/05/18 4 */ 5 #inclu

暴力/DP Codeforces Beta Round #22 (Div. 2 Only) B. Bargaining Table

题目传送门 1 /* 2 题意:求最大矩形(全0)的面积 3 暴力/dp:每对一个0查看它左下的最大矩形面积,更新ans 4 注意:是字符串,没用空格,好事多磨,WA了多少次才发现:( 5 详细解释:http://www.cnblogs.com/cszlg/p/3217478.html 6 */ 7 #include <cstdio> 8 #include <algorithm> 9 #include <cstring> 10 #include <cmath>

Codeforces Beta Round #6 (Div. 2 Only) B. President&#39;s Office

题目大意 给出一个n*m的矩阵 ,描述桌子的布局.总统的桌子和他的副手的桌子相邻,每一个人的桌子有它独有的颜色.问总统有多少个副手. 解题思路 搜出总统的桌子在矩阵中的边界后判断边界外的其它颜色桌子的数量. 题目代码 #include <set> #include <map> #include <queue> #include <math.h> #include <vector> #include <string> #include

图论/暴力 Codeforces Beta Round #94 (Div. 2 Only) B. Students and Shoelaces

题目传送门 1 /* 2 图论/暴力:这是个连通的问题,每一次把所有度数为1的砍掉,把连接的点再砍掉,总之很神奇,不懂:) 3 */ 4 #include <cstdio> 5 #include <cstring> 6 #include <algorithm> 7 #include <cmath> 8 using namespace std; 9 10 const int MAXN = 1e2 + 10; 11 const int INF = 0x3f3f3

Codeforces Beta Round #1 B. Spreadsheets

Codeblocks坏掉了,我不知道该怎么修,只能过两天重装系统了. 没办法.这个题是用Java写的,代码风格不好不要骂我~~ 题目大意: Excel表格那种坐标系统,和正常的坐标系统.用代码实现转换. 就是模拟题啊,代码量比较小. 下面是代码: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); i

Codeforces Beta Round #1 C. Ancient Berland Circus

果然Java还是不靠谱啊,一个NaN把我整了半天~~ 题目大意: 有一个正多边形,给出任意三个顶点的坐标,求这个正多边形的最小面积. 解题思路: 首先要知道这三个顶点组成的三角形的外接圆一定是这个正多边形的外接圆. 用过计算出三角形的三边长,可以计算出三角型面积,进而推出外接圆半径. 可以得到三个圆心角,找出最大公约数,那就是最大角度. 就可以计算出多边形面积了~~ 下面是代码: import java.text.DecimalFormat; import java.util.Scanner;

codeforces Beta Round #19 D. Point (线段树 + set)

题目大意: 对平面上的点进行操作. add x y 在 (x,y )上加一个点. remove x y 移除 (x,y)上的点. find x y 求出在(x,y)右上角离他最近的点,优先级是靠左,靠下. 思路分析: find 操作 比较麻烦. 要保证x大的同时还要确保x最小,而且该x上还要有点. 这样要找大的时候要小的,就是在线段树上选择性的进入左子树还是右子树. 所以核心就是,用set维护叶子节点. 然后查找的时候去叶子节点找,如果这个叶子节点有蛮子的 x y  就输出,否则回溯去另外一个子

Codeforces Beta Round #12 D. Ball (线段树)

题目大意: n个女性中,如果有一个女性的三维比这个女性的三维都大,这个女性就要自杀.问要自杀多少个. 思路分析: 先按照第一维排序. 然后离散化第二维,用第二维的下标建树,树上的值是第三维,更新的时候取最大值. 注意是按照第一维度从大到小进入线段树. 而且还要严格递增. 所以处理第一维度比较大小的时候要分开处理,要把相同的先判断,再更新入树. 那么如何判断这个女性是否自杀. 首先,你知道第一维度是从大到小的,所以先进树了的节点的第一维度一定更大. 再次,我们考虑第二维度,我们去树上第二维度下标大