bzoj3048+3049+3050
这套月赛题不是特别难
T1:离散化+单调队列,队列里出现数的种类不超过K+1,找最大的num[a[i]]
T2:一眼可以看出BFS+状压DP,还要SPFA预处理出各个块之间的dis
T3:线段树,没什么难度
#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; ; int n,K,a[maxn],b[maxn],m,ans,head,tail,q[maxn],vis[maxn],cnt; int main(){ scanf("%d%d", &n, &K); ; i<=n; i++) scanf("%d", &b[i]),a[i]=b[i]; sort(b+,b++n); m=unique(b+,b++n)-b-; ; i<=n; i++) a[i]=lower_bound(b+,b++m,a[i])-b; //for (int i=1; i<=n; i++) printf("%d\n", a[i]); head=tail=cnt=; ; i<=n; i++){ if (!vis[a[i]]) cnt++; vis[a[i]]++; q[tail++]=i; ){ vis[a[q[head]]]--; ) cnt--; head++; } ans=max(ans,vis[a[q[tail-]]]); } printf("%d\n", ans); ; }
#include<stdio.h> #include<string.h> #include<algorithm> #include<queue> using namespace std; ; ]={,,,-}; ]={,-,,}; struct node{ int x,y; node(int _x, int _y):x(_x),y(_y){} }; <<][],dis[][],id[maxn][maxn],vis[maxn][maxn],cnt,stx[],sty[],N; char s[maxn][maxn]; bool check(int x, int y){ || y< || x>n || y>m) ; ; } void bfs(int sx, int sy, int num){ queue<node> Q; Q.push(node(sx,sy)); id[sx][sy]=num; vis[sx][sy]=; while (!Q.empty()){ int x=Q.front().x, y=Q.front().y; Q.pop(); ; k<; k++){ int tx=x+dx[k], ty=y+dy[k]; if (check(tx,ty) && !vis[tx][ty] && s[tx][ty]=='X'){ vis[tx][ty]=; id[tx][ty]=num; Q.push(node(tx,ty)); } } } } void find_land(){ cnt=; ; i<=n; i++) ; j<=m; j++) if (s[i][j]=='X' && !vis[i][j]){ bfs(i,j,++cnt); stx[cnt]=i; sty[cnt]=j; } // for (int i=1; i<=cnt; i++) printf(" %d %d\n", stx[i], sty[i]); } void spfa(int sx, int sy, int num){ queue<node> Q; int next,cost; memset(d,0x3f,sizeof(d)); memset(dis[num],0x3f,sizeof(dis[num])); Q.push(node(sx,sy)); d[sx][sy]=; vis[sx][sy]=; dis[num][num]=; while (!Q.empty()){ int x=Q.front().x, y=Q.front().y; Q.pop(); ; k<; k++){ int tx=x+dx[k], ty=y+dy[k]; if (!check(tx,ty) || s[tx][ty]=='.') continue; cost=(s[tx][ty]=='S'); if (d[tx][ty]>d[x][y]+cost){ d[tx][ty]=d[x][y]+cost; ){ vis[tx][ty]=; Q.push(node(tx,ty)); } } if ((s[tx][ty]=='X') && ((next=id[tx][ty])!=num)) dis[num][next]=min(dis[num][next],d[tx][ty]); } vis[x][y]=; } } void dp(){ N=(<<cnt); memset(f,0x3f,sizeof(f)); ; i<=cnt; i++) f[(<<(i-))][i]=; ; s<N; s++){ ; i<=cnt; i++) <<(i-))) ; j<=cnt; j++) <<(j-)))) f[s^(<<(j-))][j]=min(f[s^(<<(j-))][j],f[s][i]+dis[i][j]); } int ans=0x7fffffff; ; i<=cnt; i++) ans=min(ans,f[N-][i]); printf("%d\n", ans); } int main(){ scanf("%d%d", &n, &m); ; i<=n; i++){ scanf(); } find_land(); ; i<=cnt; i++) spfa(stx[i],sty[i],i); dp(); ; }
#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; ; struct node{ int l,r,len,lz,lm,rm,mx; }t[maxn*],now; int n,m,x,y,ans; ]; void pushup(int x){ t[x].lm=t[x<<].lm; ].lm==t[x<<].len) t[x].lm=t[x<<].len+t[x<<|].lm; t[x].rm=t[x<<|].rm; |].rm==t[x<<|].len) t[x].rm=t[x<<|].len+t[x<<].rm; t[x].mx=max(t[x<<].rm+t[x<<|].lm,max(t[x<<].mx,t[x<<|].mx)); } void pushdown(int x){ ){ //涂色 t[x<<].lz=; t[x<<|].lz=; t[x<<].lm=t[x<<].rm=t[x<<].mx=; t[x<<|].lm=t[x<<|].rm=t[x<<|].mx=; } ){ //不涂色 t[x<<].lz=; t[x<<|].lz=; t[x<<].lm=t[x<<].rm=t[x<<].mx=t[x<<].len; t[x<<|].lm=t[x<<|].rm=t[x<<|].mx=t[x<<|].len; } t[x].lz=; } node query(int x, int p){ int l=t[x].l, r=t[x].r; pushdown(x); ].mx>=p) ,p); ].rm+t[x<<|].lm>=p){ node ret; ret.l=t[x<<].r-t[x<<].rm+; ret.r=ret.l+p-; return ret; }|,p); } void update(int a, int b, int x, int c){ int l=t[x].l, r=t[x].r; if (l==a && r==b){ ){ t[x].lz=; t[x].lm=t[x].rm=t[x].mx=; } ){ t[x].lz=; t[x].lm=t[x].rm=t[x].mx=t[x].len; } return; } ; pushdown(x); ,c); |,c); ,c),update(mid+,b,x<<|,c); pushup(x); } void build(int l, int r, int x){ t[x].l=l; t[x].r=r; t[x].len=r-l+; if (l==r){ t[x].lz=; t[x].lm=t[x].rm=t[x].mx=; return; } ; build(l,mid,x<<); build(mid+,r,x<<|); pushup(x); } int main(){ scanf("%d%d", &n, &m); build(,n,); //printf("%d\n", t[1].mx); while (m--){ scanf("%s", opt); ]=='A'){ scanf("%d", &x); ].mx<x) ans++; else{ now=query(,x); //printf(" %d %d\n", now.l, now.r); update(now.l,now.r,,); } }else{ scanf("%d%d", &x, &y); update(x,y,,); } } printf("%d\n", ans); ; }
bzoj3048+3049+3050的更多相关文章
- Bzoj索引
1001 : http://ideone.com/4omPYJ1002 : http://ideone.com/BZr9KF1003 : http://ideone.com/48NJNh1004 : ...
- Hsql中In没有1000的限制
SELECT * FROM user , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ...
- 存储过程数据insert into select
create or replace procedure PRO_K3_CZZH (org_name in varchar2, --财政专户名称 opertype in varchar2, --操作类型 ...
- jqu
1 /*2 * 说明:3 * 本源代码的中文注释乃Auscarlin呕心沥血所作.旨在促进jQuery的传播以及向广大jQuery爱好者提供一个进阶4 *的途径,以让各位更加深入地了解jQuery,学 ...
- 7.12归来赛_B
Prime Judge 时间限制 1000 ms 内存限制 65536 KB 题目描写叙述 众所周知.假设一个正整数仅仅能被1和自身整除,那么该数被称为素数.题目的任务非常easy.就是判定一个数是否 ...
- 【8.0.0_r4】AMS分析(十六)(ActivityManagerService.java上)
代码位于frameworks/base/services/core/java/com/android/server/am/,一共有七十个文件. Java源码位于package com.android. ...
- POJ -3050 Hopscotch
http://poj.org/problem?id=3050 给定一个5×5矩阵,问选6个数的不同排列总数是多少! 二维的搜索,注意要判重,数据量很小,直接用map就好. #include<cs ...
- hdu - 3049 - Data Processing(乘法逆元)
题意:N(N<=40000)个数n1, n2, ..., nN (ni<=N),求(2 ^ n1 + 2 ^ n2 + ... + 2 ^nN) / N % 1000003. 题目链接:h ...
- LOJ 3049: 洛谷 P5284: 「十二省联考 2019」字符串问题
题目传送门:LOJ #3049. 题意简述: 给定一个长度为 \(n\) 的母串 \(S\). 有 \(n_a\) 个 A 类串,都是 \(S\) 的子串,以区间的形式给出. 有 \(n_b\) 个 ...
随机推荐
- angular-route 和soket注意细节点
route run 文件是第一个位置,之后才配置路由哪些,代码: angular.module('technodeApp',['ngRoute']).run(function($window,$roo ...
- asp.net 网页中播放 flash 和flv
需求:在网页中播放powerpoint保存的pps文件和mp4文件 经过查阅:发现网页上直接播放pps文件比较麻烦(office web apps server),所以通过工具,将pps文件转换为sw ...
- JAVASCRIPT常用API总结
目录 元素查找 class操作 节点操作 属性操作 内容操作 css操作 位置大小 事件 DOM加载完毕 绑定上下文 去除空格 Ajax JSON处理 节点遍历 元素查找 // Node docume ...
- Android 常用代码
1.单元测试 然而可以直接建立单元测试 <uses-library android:name="android.test.runner"/> 放在application ...
- 深入理解ConcurrentMap.putIfAbsent(key,value) 用法
转自:http://blog.csdn.net/exceptional_derek/article/details/40384659 先看一段代码: public class Locale { pri ...
- 在wex5平台grid显示问题
新建的时候必须自动生成一个主表id,然后grid里面的column里面的editable必须是true,input里面的bind-ref得绑定值.
- supervisor-3:xml_rpc
别人博客转载,做个记录 原文链接:http://lixcto.blog.51cto.com/4834175/1540795 supervisor提供的两种管理方式,supervisorctl和web其 ...
- 【vuejs小项目——vuejs2.0版本】单页面搭建
http://router.vuejs.org/zh-cn/essentials/nested-routes.html 使用嵌套路由开发,这里会出错主要把Vue.use(VueRouter);要进行引 ...
- Shell_2 语句
1 if else fi if 语句通过关系运算符判断表达式的真假来决定执行哪个分支.Shell 有三种 if ... else 语句: if ... fi 语句: if ... else ... f ...
- iOS中的单例
#import "Singleton.h" @implementation Singleton static Singleton *singleton = nil; + (Sing ...