版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/yew1eb/article/details/25609981

A Points and Segments (easy)

 智商题。(智商捉急~)

/***********************************************************
*分析:仅仅要按Xi从小到大染成1010101010... ,
*1、0间隔的的序列就能保证对于随意区间[l, r]中1的个数和0的个数之差小于等于1。
*注意:因为输入的Xi可能是无序的。全部要两次排序处理。
**********************************************************/
#include <cstdio>
#include <algorithm>
using namespace std; const int maxn = 200 + 5; struct node {
int id;
int x;
int val;
};
node a[maxn];
int n, m; bool cmp_x(const node &a,const node &b)
{
return a.x < b.x;
}
bool cmp_id(const node &a,const node &b)
{
return a.id<b.id;
}
int main()
{
int i, l, r;
scanf("%d%d",&n,&m);
for(i=0; i<n; ++i)
{
scanf("%d",&a[i].x);
a[i].id = i;
}
for(i=0; i<m; ++i)
scanf("%d%d",&l, &r);
sort(a, a + n, cmp_x);
for(i=0; i<n; ++i)
a[i].val = i&1;
sort(a, a + n, cmp_id);
for(i=0; i<n; ++i)
printf("%d ", a[i].val); return 0;
}

B Balls Game

枚举

/************************************************
*分析:枚举插入点,然后用循环模拟消除操作
************************************************/
#include <stdio.h>
int n, k, x;
int a[100+5]; int main()
{
int i, l, r, cnt, ret, ans = 0;
scanf("%d%d%d",&n, &k, &x);
for(i=0; i<n; ++i)
scanf("%d",&a[i]); for(i=0; i<n; ++i)
if(a[i]==x)
{
l = r = i;
cnt = 0;
while(a[l] == a[r])
{
ret = 2;
while(l > 0 && a[l-1] == a[l]) { l--; ret++;}
while(r < n-1 && a[r+1] == a[r]) {r++; ret++;}
--l; ++r;
if(ret<3) break;
cnt += ret;
if(l < 0 || r >= n) break;
}
if(cnt-1 > ans) ans = cnt-1;
}
printf("%d\n", ans);
return 0;
}

C Xor-tree

建树后DFS

/******************************
* 分析:题意简单
* 在树上进行简单的操作
******************************/
#include <cstdio>
#include <vector>
using namespace std; const int maxn = 100000 + 10;
vector<int> Edge[maxn];
int cnt = 0, ans[maxn];
int n, a[maxn], b[maxn]; void dfs(int rt, int pre, int p1, int p2)
{
if( a[rt]^ p1 != b[rt])
{
ans[cnt++] = rt;
p1 = 1- p1;
} for(int i=0; i<Edge[rt].size(); ++i)
{
int &e = Edge[rt][i];
if(e == pre) continue;
dfs(e, rt, p2, p1);
}
} int main()
{
int i, x, y;
scanf("%d",&n);
for(i=1; i<n; ++i)
{
scanf("%d%d",&x,&y);
Edge[x].push_back(y);
Edge[y].push_back(x);
}
for(i=1; i<=n; ++ i) scanf("%d",&a[i]); for(i=1; i<=n; ++i) scanf("%d",&b[i]);
dfs(1, -1, 0, 0);
printf("%d\n", cnt);
for(i=0; i<cnt; ++i)
printf("%d\n", ans[i]);
return 0;
}

D Working out

先递推出每个点(i,j)到四个顶点{(n,m), (n,1), (1,m), (1,1) }的最大权值和。 然后枚举交点。 对于每个交点仅仅有例如以下图两种情况满足题意仅仅有一个交点。

watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQveWV3MWVi/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="" />

#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn = 1000 + 100;
int n, m, a[maxn][maxn], f1[maxn][maxn], f2[maxn][maxn], f3[maxn][maxn], f4[maxn][maxn], ans; int main()
{
int i, j;
scanf("%d%d",&n, &m);
for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
scanf("%d",&a[i][j]); for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
f1[i][j] = max(f1[i-1][j], f1[i][j-1]) + a[i][j]; for(i=1; i<=n; ++i)
for(j=m; j>=1; --j)
f2[i][j] = max(f2[i][j+1], f2[i-1][j]) + a[i][j]; for(i=n; i>=1; --i)
for(j=1; j<=m; ++j)
f3[i][j] = max(f3[i][j-1], f3[i+1][j]) + a[i][j]; for(i=n; i>=1; --i)
for(j=m; j>=1; --j)
f4[i][j] = max(f4[i][j+1], f4[i+1][j]) + a[i][j]; ans = 0;
for(i=2; i<n; ++i)
for(j=2; j<m; ++j)
ans = max(ans, max(f1[i-1][j] + f2[i][j+1] + f3[i][j-1] + f4[i+1][j],
f1[i][j-1] + f2[i-1][j] + f3[i+1][j] + f4[i][j+1]) );
printf("%d\n", ans);
return 0;
}

E Guess the Tree

load....

Codeforces Round #245 (Div. 2)的更多相关文章

  1. Codeforces Round #245 (Div. 1) 429D - Tricky Function 最近点对

    D. Tricky Function Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 codeforces.com/problemset/problem/42 ...

  2. Codeforces Round #245 (Div. 1) B. Working out (简单DP)

    题目链接:http://codeforces.com/problemset/problem/429/B 给你一个矩阵,一个人从(1, 1) ->(n, m),只能向下或者向右: 一个人从(n, ...

  3. Codeforces Round #245 (Div. 1) B. Working out (dp)

    题目:http://codeforces.com/problemset/problem/429/B 第一个人初始位置在(1,1),他必须走到(n,m)只能往下或者往右 第二个人初始位置在(n,1),他 ...

  4. Codeforces Round #245 (Div. 1) B. Working out dp

    题目链接: http://codeforces.com/contest/429/problem/B B. Working out time limit per test2 secondsmemory ...

  5. Codeforces Round #245 (Div. 2) C. Xor-tree DFS

    C. Xor-tree Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/430/problem/C ...

  6. Codeforces Round #245 (Div. 2) B. Balls Game 并查集

    B. Balls Game Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/430/problem ...

  7. Codeforces Round #245 (Div. 2) A. Points and Segments (easy) 贪心

    A. Points and Segments (easy) Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://codeforces.com/con ...

  8. Codeforces 429 B. Working out-dp( Codeforces Round #245 (Div. 1))

    B. Working out time limit per test 2 seconds memory limit per test 256 megabytes input standard inpu ...

  9. Codeforces Round #245 (Div. 2) B - Balls Game

    暴利搜索即可 #include <iostream> #include <vector> #include <iostream> using namespace s ...

  10. Codeforces Round #245 (Div. 2) A - Points and Segments (easy)

    水到家了 #include <iostream> #include <vector> #include <algorithm> using namespace st ...

随机推荐

  1. 清除电脑垃圾.bat

    echo.title delete cachecolor 0aecho.echo please enter any key start.....@echo offecho execuing delet ...

  2. C#添加IIS站点

    利用IIS7自带类库管理IIS现在变的更强大更方便,而完全可以不需要用DirecotryEntry这个类了(乐博网中很多.net管理iis6.0的文章都用到了DirecotryEntry这个类 ),M ...

  3. iOS SDK开发汇总

    以前也做过静态库的开发,不过都是一些简单的调用,最近在做项目的时候,发现其中还有很多问题,所以建个小项目简单记录遇到的问题以及正确的解决办法. 在项目中遇到的问题如下:xib文件获取不到, story ...

  4. elasticsearch6.7 05. Document APIs(7)Update By Query API

    6.Update By Query API _update_by_query 接口可以在不改变 source 的情况下对 index 中的每个文档进行更新.这对于获取新属性或其他联机映射更改很有用.以 ...

  5. 【Java深入研究】6、CGLib动态代理机制详解

    一.首先说一下JDK中的动态代理: JDK中的动态代理是通过反射类Proxy以及InvocationHandler回调接口实现的 但是,JDK中所要进行动态代理的类必须要实现一个接口,也就是说只能对该 ...

  6. fast-spring-boot快速开发项目

    Introduction fast-spring-boot 集成Spring Boot 2.1,Mybatis,Mybatis Plus,Druid,FastJson,Redis,Rabbit MQ, ...

  7. Contest2073 - 湖南多校对抗赛(2015.04.06)

    Contest2073 - 湖南多校对抗赛(2015.04.06) Problem A: (More) Multiplication Time Limit: 1 Sec  Memory Limit:  ...

  8. var声明变量

    var操作符定义变量将成为定义该变量作用域的局部变量 举例说明: 例子1: function test(){ var message = "hi"; //message是函数内部局 ...

  9. js-Higher-base.js

    // 1.基于原型链的继承 // 继承属性 // 当访问一个对象的属性时发生的行为: // 假定有一个对象 o, 其自身的属性(own properties)有 a 和 b: {a: 1, b: 2} ...

  10. vue-cli脚手架之package.json

    package.json文件配置及其含义,这个是vue-cli自动生成的文件,先贴一张代码及其含义: { "name": "secondproject",//模 ...