Problem

BZOJ

Solution

可能是因为快要省选了,所以最近更博的频率好像高了点_(:зゝ∠)_

每个字符串最多有两个状态,然后要满足一些依赖关系,考虑2sat。可以先把字符串的结束节点在Trie树上建出来,这样它的前缀就是它的祖先,它作为前缀的就是它子树内的节点。利用Trie树的结构,建一棵向下的一棵向上的树优化连边,这样边数就减少到了 \(O(n)\) 的级别。

然而我高高兴兴写完之后连样例都过不去,调一调发现当两个字符串在同一个结束节点时也应该相互连边。为了避免边数退化,就把这些重复节点搞成链表的形式,复杂度就对了。但这样可能产生一个问题,因为链表是单向的,后来的一些点可能无法连向原来子树中的点,因此我们把所有字符串按长度排序,保证挂链表时结束节点的子树为空即可。

时间复杂度 \(O(n)\),但是带了 \(6\) 的常数。

Code

#include <algorithm>
#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
typedef long long ll;
const int maxn=3000010;
template <typename Tp> inline int getmin(Tp &x,Tp y){return y<x?x=y,1:0;}
template <typename Tp> inline int getmax(Tp &x,Tp y){return y>x?x=y,1:0;}
template <typename Tp> inline void read(Tp &x)
{
x=0;int f=0;char ch=getchar();
while(ch!='-'&&(ch<'0'||ch>'9')) ch=getchar();
if(ch=='-') f=1,ch=getchar();
while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
if(f) x=-x;
}
struct data{int v,nxt;}edge[maxn<<1];
int n,p,tot,dfc,top,scc,head[maxn],len[maxn],rk[maxn],ch[maxn][2];
int dfn[maxn],low[maxn],stk[maxn],in[maxn],bel[maxn];
char str[500010];
string s[500010];
int A(int x){return x<<1;}
int B(int x){return x<<1|1;}
int cmp(const int &x,const int &y){return len[x]<len[y];}
void insert(int u,int v)
{
edge[++p]=(data){v,head[u]};head[u]=p;
u^=1;v^=1;
edge[++p]=(data){u,head[v]};head[v]=p;
}
void ins(int id,int x)
{
int rt=n+1,lst;
for(int i=0;i<len[id];i++)
{
if(!ch[rt][s[id][i]-'0'])
{
ch[rt][s[id][i]-'0']=++tot;
insert(B(rt),B(tot));
}
lst=rt;rt=ch[rt][s[id][i]-'0'];
}
++tot;
insert(B(rt),B(tot));
insert(x,B(tot));
insert(x,A(rt));
ch[lst][0]==rt?ch[lst][0]=tot:ch[lst][1]=tot;
}
void tarjan(int x)
{
dfn[x]=low[x]=++dfc;stk[++top]=x;in[x]=1;
for(int i=head[x];i;i=edge[i].nxt)
{
if(!dfn[edge[i].v]){tarjan(edge[i].v);getmin(low[x],low[edge[i].v]);}
else if(in[edge[i].v]) getmin(low[x],dfn[edge[i].v]);
}
if(dfn[x]==low[x])
{
int tmp;++scc;
do{
tmp=stk[top--];
in[tmp]=0;
bel[tmp]=scc;
}while(tmp^x);
}
}
void input()
{
read(n);tot=n+1;
for(int i=1;i<=n;i++)
{
scanf("%s",str);
s[i]=str;rk[i]=i;
len[i]=s[i].length();
}
sort(rk+1,rk+n+1,cmp);
for(int i=1;i<=n;i++)
{
int j=rk[i],pos=-1;
for(int r=0;r<len[j];r++)
if(s[j][r]=='?')
{
pos=j;
s[j][r]='0';ins(j,A(j));
s[j][r]='1';ins(j,B(j));
s[j][r]='?';
break;
}
if(pos==-1)
{
ins(j,A(j));
insert(B(j),A(j));
}
}
}
int main()
{
input();
for(int i=2,lim=B(tot);i<=lim;i++) if(!dfn[i]) tarjan(i);
for(int i=1;i<=tot;i++) if(bel[A(i)]==bel[B(i)]){puts("NO");return 0;}
puts("YES");
for(int i=1;i<=n;i++)
{
for(int j=0;j<len[i];j++)
if(s[i][j]=='?')
{
s[i][j]=(bel[A(i)]<bel[B(i)]?'0':'1');
break;
}
cout<<s[i]<<endl;
}
return 0;
}

BZOJ4840 NEERC2016 Binary Code的更多相关文章

  1. @gym - 101190B@ Binary Code

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 我们称一组字符串是 "前缀码",当且仅当不存 ...

  2. 格雷码(Gray Code)转二进制码(Binary Code)

    学习verilog generate语句时,偶然看到用generate语句来进行格雷码到二进制码转换的代码,就从网上找了一些案例来学习. 下表为几种自然二进制码与格雷码的对照表: 十进制数 自然二进制 ...

  3. USACO Party Lamps 【Binary code solvution】【规律】

    写这道题目的时候遇到了一个令人诧异的问题,就是平台上跑来的结果和我本机跑起来的结果不一样. 后来Debug了之后才发现是我数组开小了,只开到100 的数组竟然都去访问他170位的地址肯定要跪成翔啊.. ...

  4. Adaptive Code Via C#读书笔记

    原书链接: http://www.amazon.com/Adaptive-Code-via-principles-Developer-ebook/dp/B00OCLLYTY/ref=dp_kinw_s ...

  5. [LeetCode]题解(python):089 Gray Code

    题目来源 https://leetcode.com/problems/gray-code/ The gray code is a binary numeral system where two suc ...

  6. An update on OS X Code Signing(OS X代码签名)

    There has recently been updates to the OS X code signing process. These updates also affect Qt appli ...

  7. (DP 雷格码)Gray code -- hdu -- 5375

    http://acm.hdu.edu.cn/showproblem.php?pid=5375 Gray code Time Limit: 2000/1000 MS (Java/Others)    M ...

  8. Ascii vs. Binary Files

    Ascii vs. Binary Files Introduction Most people classify files in two categories: binary files and A ...

  9. Top 40 Static Code Analysis Tools

    https://www.softwaretestinghelp.com/tools/top-40-static-code-analysis-tools/ In this article, I have ...

随机推荐

  1. C 函数——Day04

    C 函数 函数是一组一起执行一个任务的语句.每个 C 程序都至少有一个函数,即主函数 main() ,所有简单的程序都可以定义其他额外的函数. 您可以把代码划分到不同的函数中.如何划分代码到不同的函数 ...

  2. Storm入门到精通(四)---本地实例Demo

    单词实时计数 maven项目的结构: 一.Pom.xml [html] view plain copy <project xmlns="http://maven.apache.org/ ...

  3. 数据挖掘领域经典分类算法 —— C4.5算法(附python实现代码)

    目录 理论介绍 什么是分类 分类的步骤 什么是决策树 决策树归纳 信息增益 相关理论基础 计算公式 ID3 C4.5 python实现 参考资料 理论介绍 什么是分类 分类属于机器学习中监督学习的一种 ...

  4. tokenizer

    http://blog.csdn.net/beyond__devil/article/details/52829241

  5. spark 调优——基础篇

    开发调优 调优概述 Spark性能优化的第一步,就是要在开发Spark作业的过程中注意和应用一些性能优化的基本原则.开发调优,就是要让大家了解以下一些Spark基本开发原则,包括:RDD lineag ...

  6. 解题:USACO13FEB Taxi

    题面 因为每次只能载一头牛,所以总路程=每头牛的距离+回头路的最短距离,于是问题变成了如何求回头路的最短距离 我们可以把起点和终点存在两个数组里,然后将两个数组排序后取对应位置相减的绝对值就是每次走回 ...

  7. bzoj3533【Sdoi2014】向量集

    题目描述 维护一个向量集合,在线支持以下操作:"A x y (|x|,|y| < =10^8)":加入向量(x,y);" Q x y l r (|x|,|y| &l ...

  8. [USACO18OPEN]Talent Show

    题目描述 Farmer John要带着他的N头奶牛,方便起见编号为1…N,到农业展览会上去,参加每年的达牛秀!他的第iii头奶牛重量为wi,才艺水平为ti​,两者都是整数. 在到达时,Farmer J ...

  9. Lnmp上安装Yaf学习(二)

    上一节主要实践了在Lnmp上安装Yaf扩展,那么这一节将测试 Yaf 的一个简单demo的运行. 一.通过Lnmp 创建 vhost 文件 [root@localhost yaf-3.0.6]# ln ...

  10. mvc4同一视图传入两个模型

    http://bbs.csdn.net/topics/390961335 用ViewModel,把内容和评论构造到一个类中 这个简单,定义一个模型,包含两个属性,各自为那两个模型的类型,用这个模型.比 ...