博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ2054 疯狂的馒头
阅读量:6364 次
发布时间:2019-06-23

本文共 1337 字,大约阅读时间需要 4 分钟。

挺有意思的一道题,能考出并查集思想也是不错的

由于后面会覆盖前面,因此我们可以倒序处理颜色

令nxt[i]表示i后第一个未被染色的点,这样每个点只被染一次,那么处理每个询问时,我们暴力跳nxt处理,O(nm)

考虑在跳nxt时,有一些部分是染上色的,可以被一步跳过的,这个步骤就很像并查集中的路径压缩

因此改暴力跳为并查集式的递归,O(n+m)

#include
#include
#include
#include
#include
#include
#include
using namespace std;#define O(x) cout << #x << " " << x << endl;#define O_(x) cout << #x << " " << x << " ";#define B cout << "breakpoint" << endl;#define clr(a) memset(a,0,sizeof(a));#define pii pair
#define mp make_pairtypedef double db;typedef long long ll;inline int read(){ int ans = 0,op = 1; char ch = getchar(); while(ch < '0' || ch > '9') { if(ch == '-') op = -1; ch = getchar(); } while(ch >= '0' && ch <= '9') { (ans *= 10) += ch - '0'; ch = getchar(); } return ans * op;}const int maxn = 1e6 + 5;int nxt[maxn],n,m,p,q;int l,r;int co;int col[maxn];int find(int x) { while(col[x]) x = nxt[x]; if(x < l) return x; col[x] = co; return x == l ? nxt[x] = l - 1 : nxt[x] = find(x - 1); }int main(){ n = read(),m = read(),p = read(),q = read(); for(int i = m;i >= 1;i--) { co = i; l = (i * p + q) % n + 1,r = (i * q + p) % n + 1; if(l > r) swap(l,r); //O(l) ;O(r); find(r); } for(int i = 1;i <= n;i++) printf("%d\n",col[i]);}

 

转载于:https://www.cnblogs.com/LM-LBG/p/10945087.html

你可能感兴趣的文章
又一个 iOS 侧边栏组件: SideMenu
查看>>
espresso 2.0.4 Apple Xcode 4.4.1 coteditor 价格
查看>>
Goldengate 维护
查看>>
ASP.NET没有魔法——ASP.NET MVC使用Oauth2.0实现身份验证
查看>>
所有转义字符
查看>>
C# 属性事件一些设置说明
查看>>
去除UITableViewheader footer黏性
查看>>
windows2003 iis6.0不能显示asp.net选项
查看>>
xen MacOS
查看>>
如何学好C和C++
查看>>
Gitlab通过custom_hooks自动更新服务器代码
查看>>
我的友情链接
查看>>
python 如何判断调用系统命令是否执行成功
查看>>
Lesson10 vSphere 管理特性
查看>>
memcache 扩展和 memcached扩展安装
查看>>
好程序员的查克拉---自信
查看>>
线程池的设计(二):领导者追随者线程池的设计
查看>>
获取设备列表
查看>>
Django使用网上模板做个能展示的博客
查看>>
基于同IP不同端口,同端口不同Ip的虚拟主机 基于FQDN的虚拟主机
查看>>