CF 420A  A. Start Up

题目链接:

http://codeforces.com/problemset/problem/420/A

题目意思:

给一个字符串A,通过镜面反射后得到A‘,推断A和A’是否全然一样。

解题思路:

水题。分析知有些字母通过镜面反射后和原来一样。

代码:

//#include<CSpreadSheet.h>

#include<iostream>
#include<cmath>
#include<cstdio>
#include<sstream>
#include<cstdlib>
#include<string>
#include<string.h>
#include<cstring>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<ctime>
#include<bitset>
#include<cmath>
#define eps 1e-6
#define INF 0x3f3f3f3f
#define PI acos(-1.0)
#define ll __int64
#define LL long long
#define lson l,m,(rt<<1)
#define rson m+1,r,(rt<<1)|1
#define M 1000000007
//#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std; #define Maxn 33
int hav[Maxn];
char save[110000]; void init()
{
memset(hav,0,sizeof(hav));
hav[1]=1,hav['H'-'A'+1]=1;
hav['I'-'A'+1]=1;
hav['M'-'A'+1]=1;
hav['O'-'A'+1]=1;
hav['T'-'A'+1]=1;
hav['U'-'A'+1]=1;
hav['V'-'A'+1]=1;
hav['W'-'A'+1]=1;
hav['X'-'A'+1]=1;
hav['Y'-'A'+1]=1; }
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
while(~scanf("%s",save+1))
{
int len=strlen(save+1);
int ans=1;
int p=1; init(); //printf("%d %d\n",p,len);
while(save[p]==save[len]&&p<=len)
{
if(!hav[save[p]-'A'+1])
{
ans=0;
break;
}
p++;
len--;
} if(p<=len)
ans=0;
if(ans)
printf("YES\n");
else
printf("NO\n");
}
return 0;
}

CF 420B B. Online Meeting

题目链接:

http://codeforces.com/problemset/problem/420/B

题目意思:

有n个人开会,已知按时间顺序的m个进出记录(部分开会),求哪些人可能一直在开会。

解题思路:

抽象模拟。

能够保存一个当前时间的统治者me.

(无)+(有)

(有)-(无)

详解请见代码:

//#include<CSpreadSheet.h>
#include<iostream>
#include<cmath>
#include<cstdio>
#include<sstream>
#include<cstdlib>
#include<string>
#include<string.h>
#include<cstring>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<ctime>
#include<bitset>
#include<cmath>
#define eps 1e-6
#define INF 0x3f3f3f3f
#define PI acos(-1.0)
#define ll __int64
#define LL long long
#define lson l,m,(rt<<1)
#define rson m+1,r,(rt<<1)|1
#define M 1000000007
//#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std; #define Maxn 110000 int ans[Maxn],add[Maxn];
int n,m,a,cnt,me;
char temp[3]; int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
while(~scanf("%d%d",&n,&m))
{
for(int i=1;i<=n;i++)
ans[i]=1,add[i]=0;;
cnt=0;
me=0; for(int i=1;i<=m;i++)
{
scanf("%s%d",temp,&a);
if(*temp=='+')
{
if(!me||(me==a)) //更新统治者 注意要分别 +1 -1 +1的情况。此时统治者还是1
me=a;
else
ans[a]=0; //和前面的通知不一样 不行 比方+1 +2那么2不行
add[a]=1; //保存出现 if(a!=me&&!add[me]) //-1 +2 此时的1不行
ans[me]=0;
cnt++;
}
else //'-'
{
if(!me) //更新统治者
me=a;
if(a!=me&&add[a]==0) //+1 +2 -3 此时1为统治者
{
ans[me]=0;
me=a;
}
if(add[a]) //抵消
{
add[a]=0;
cnt--;
}
if(cnt) //还有剩余力量 +1 +2 -2 此时的2不行 +1 +2 -1此时的1也不行,仅仅要有+的不一样就不行
ans[a]=0; } }
int tt=0;
bool fi=true; for(int i=1;i<=n;i++)
if(ans[i])
tt++;
printf("%d\n",tt);
for(int i=1;i<=n;i++)
{
if(ans[i])
{
if(!fi) //第一个出现
printf(" ");
printf("%d",i);
if(fi)
fi=false;
} }
printf("\n"); }
return 0;
}
Codeforces 420C - Bug in Code
题目链接:
http://codeforces.com/problemset/problem/420/C
解题思路:
先预处理出当选中第i个人时,会使num[i]个人惬意。注意当(i,j)是某人同一时候讨厌的时候,假设此时选中(i,j)仅仅会使一个人惬意。所以先出于处理出这样的情况,直接推断出选中(i,j)时是否可行。假设不行提前减掉。 然后再排序,枚举选中的第一个人,直接二分出第二个人的位置。
代码:
//#include<CSpreadSheet.h>

#include<iostream>
#include<cmath>
#include<cstdio>
#include<sstream>
#include<cstdlib>
#include<string>
#include<string.h>
#include<cstring>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<ctime>
#include<bitset>
#include<cmath>
#define eps 1e-6
#define INF 0x3f3f3f3f
#define PI acos(-1.0)
#define ll __int64
#define LL long long
#define lson l,m,(rt<<1)
#define rson m+1,r,(rt<<1)|1
#define M 1000000007
//#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std; #define Maxn 310000 int num[Maxn],n,p;
map<pair<int,int>,int>myp; int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
while(~scanf("%d%d",&n,&p))
{
memset(num,0,sizeof(num));
myp.clear();
for(int i=1;i<=n;i++)
{
int a,b;
scanf("%d%d",&a,&b);
if(a>b)
swap(a,b);
myp[make_pair(a,b)]++;
num[a]++;
num[b]++;
} map<pair<int,int>,int>::iterator it=myp.begin(); ll ans=0; for(;it!=myp.end();it++)
{
int ta=it->first.first,tb=it->first.second; if(num[ta]+num[tb]>=p&&num[ta]+num[tb]-it->second<p)
ans--; //说明选中ta和tb不可行
}
sort(num+1,num+n+1); for(int i=1;i<n;i++)
{
/* if(!num[i])
continue;*/
if(num[i]>=p)
{
ans+=n-i;
continue;
}
int temp=p-num[i];
if(temp>num[n]) //二分出第二个人的位置
continue;
int pos=lower_bound(num+i+1,num+n+1,temp)-num; ans+=n-pos+1;
//printf("i:%d pos:%d\n",i,pos); }
printf("%I64d\n",ans);
}
return 0;
}

版权声明:本文博客原创文章。博客,未经同意,不得转载。

Coder-Strike 2014 - Finals (online edition, Div. 1)的更多相关文章

  1. Coder-Strike 2014 - Finals (online edition, Div. 2) A. Pasha and Hamsters

    水题 #include <iostream> #include <vector> #include <algorithm> using namespace std; ...

  2. Coder-Strike 2014 - Finals (online edition, Div. 2) B. Start Up

    需要满足的条件是 (1)每个字母是对称的 (2)每个字符串是对称的 #include <iostream> #include <algorithm> #include < ...

  3. Coder-Strike 2014 - Finals (online edition, Div. 2) C题

    C. Online Meeting time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  4. Bubble Cup 11 - Finals [Online Mirror, Div. 1]题解 【待补】

    Bubble Cup 11 - Finals [Online Mirror, Div. 1] 一场很好玩的题啊! I. Palindrome Pairs 枚举哪种字符出现奇数次. G. AI robo ...

  5. IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) B. Bear and Compressing

    B. Bear and Compressing 题目链接  Problem - B - Codeforces   Limak is a little polar bear. Polar bears h ...

  6. IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) E - Bear and Forgotten Tree 2 链表

    E - Bear and Forgotten Tree 2 思路:先不考虑1这个点,求有多少个连通块,每个连通块里有多少个点能和1连,这样就能确定1的度数的上下界. 求连通块用链表维护. #inclu ...

  7. IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) E. Bear and Forgotten Tree 2 bfs set 反图的生成树

    E. Bear and Forgotten Tree 2 题目连接: http://www.codeforces.com/contest/653/problem/E Description A tre ...

  8. IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) D. Delivery Bears 二分+网络流

    D. Delivery Bears 题目连接: http://www.codeforces.com/contest/653/problem/D Description Niwel is a littl ...

  9. IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) C. Bear and Up-Down 暴力

    C. Bear and Up-Down 题目连接: http://www.codeforces.com/contest/653/problem/C Description The life goes ...

随机推荐

  1. Android中的消息机制:Handler消息传递机制 分类: H1_ANDROID 2013-10-27 22:54 1755人阅读 评论(0) 收藏

    参考<疯狂android讲义>第2版3.5 P214 一.背景 出于性能优化考虑,Android的UI操作并不是线程安全的,这意味着如果有多个线程并发操作UI组件,可能导致线程安全问题.为 ...

  2. dmalloc arm-linux平台使用

    话说“工欲善其事,必先得其器”,用C语言写程序,最怕遇到个什么内存泄漏,内存越界访问了,心里那个急啊... 如果在i368-linlux上,valgrind工具是首选,但在arm-linux平台上,如 ...

  3. 前端js实现打印(导出)excel表格

    产品原型: 图片.png 功能需求:点击导出考勤表格按钮,会自动下载成Excel格式 图片.png 图片.png jsp页面代码: <div class="tools"> ...

  4. 怎样收缩超大的SharePoint_Config数据库

    前言 在已经执行了2年多的SharePointserver上,发现SharePoint_Config的数据库文件越来越大,已经达到90几个GB,收缩能够减小20几个GB,可是一周以后又会恢复到90几个 ...

  5. Swift开发教程--关于Existing instance variable &#39;_delegate&#39;...的解决的方法

    xcode编译提示问题:Existing instance variable '_delegate' for property 'delegate' with  assign attribute mu ...

  6. git 分支建立及合并

    分支的新建与合并 让我们来看一个简单的分支新建与分支合并的例子,实际工作中你可能会用到类似的工作流. 你将经历如下步骤: 开发某个网站. 为实现某个新的需求,创建一个分支. 在这个分支上开展工作. 正 ...

  7. js获取滚动条的宽度

    function getScrollWidth() { var noScroll, scroll, oDiv = document.createElement("DIV"); oD ...

  8. 【u207】最小值

    Time Limit: 1 second Memory Limit: 128 MB [问题描述] N个数排成一排,你可以任意选择连续的若干个数,算出它们的和.问该如何选择才能使得和的绝对值最小. 如: ...

  9. 【codeforces 755D】PolandBall and Polygon

    time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  10. HDoj-1874-畅通project续-Dijkstra算法

    畅通project续 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total ...