题解:P11350 [NOISG2024 Finals] Shops
-
深度优先搜索 (DFS):
- 在 dfs 函数中,使用深度优先搜索来遍历图,并为每个节点分配颜色(
col 数组)。颜色分配的规则是相邻节点的颜色不同,这里使用了3 - col[u] 来确保相邻节点颜色不同(假设颜色为1 和2 )。
- 在 dfs 函数中,使用深度优先搜索来遍历图,并为每个节点分配颜色(
-
图的遍历和处理:
- 代码首先读取图的节点数
n 和边数m 。 - 然后读取每条边的两个端点
a 和b 以及边的权重w ,并将这些信息存储在邻接表v 中。
- 代码首先读取图的节点数
-
排序和选择最大值:
- 对于每个节点
i ,将与其相连的边按权重排序。 - 使用
MXTO(ans, v[i][0].f) 来更新最大权重ans ,即选择每个节点连接的边中权重最大的一条。
- 对于每个节点
-
构建无向图:
- 使用邻接表
g 来存储图的结构,确保每个节点与其相邻节点之间的连接关系正确。
- 使用邻接表
-
颜色分配:
- 在 main 函数中,通过调用 dfs 来为每个节点分配颜色,确保相邻节点颜色不同。
- 最后根据颜色输出
B 或D ,这里假设颜色1 对应B ,颜色2 对应D 。
-
模板和宏定义:
- 使用了一些宏定义来简化代码,例如
REP(i, n) 表示从0 到n-1 的循环,MXTO(x, y) 表示将x 更新为x 和y 中的较大值。
- 使用了一些宏定义来简化代码,例如
code:
#include<bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> indexed_set;
using ll=long long;
using ld=long double;
using pii=pair<int,int>;
#define f first
#define s second
#define pb push_back
#define REP(i,n) for(int i=0;i<n;i++)
#define REP1(i,n) for(int i=1;i<=n;i++)
#define FILL(n,x) memset(n,x,sizeof(n))
#define ALL(_a) _a.begin(),_a.end()
#define sz(x) (int)x.size()
#define SORT_UNIQUE(c) (sort(c.begin(),c.end()),c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
const ll maxn=5e5+5;
const ll maxlg=__lg(maxn)+2;
const ll INF64=4e18;
const int INF=0x3f3f3f3f;
const ll MOD=998244353;
const ld PI=acos(-1);
const ld eps=1e-4;
#define lowb(x) x&(-x)
#define MNTO(x,y) x=min(x,(__typeof__(x))y)
#define MXTO(x,y) x=max(x,(__typeof__(x))y)
template<typename T>
ostream& operator<<(ostream& out,vector<T> V){
REP(i,sz(V)) out<<V[i]<<((i!=sz(V)-1)?" ":"\n");
return out;
}
template<typename T1,typename T2>
ostream& operator<<(ostream& out,pair<T1,T2> P){
out<<P.f<<' '<<P.s;
return out;
}
ll mult(ll a,ll b){
return a*b%MOD;
}
ll mypow(ll a,ll b){
a%=MOD;
if(a==0) return 0;
if(b<=0) return 1;
ll res=1LL;
while(b){
if(b&1) res=(res*a)%MOD;
a=(a*a)%MOD;
b>>=1;
}
return res;
}
vector<pii> v[maxn];
int to[maxn];
int col[maxn];
vector<int> g[maxn];
void dfs(int u){
for(int x:g[u]){
if(!col[x]){
col[x]=3-col[u];
dfs(x);
}
}
}
int main(){
ios::sync_with_stdio(false),cin.tie(0);
int n,m;
cin>>n>>m;
REP(i,m){
int a,b,w;
cin>>a>>b>>w;
v[a].pb({w,b});
v[b].pb({w,a});
}
ll ans=0;
vector<int> st;
REP1(i,n){
sort(ALL(v[i]));
MXTO(ans,v[i][0].f);
to[i]=v[i][0].s;
if(to[v[i][0].s]==i) continue;
g[i].pb(v[i][0].s);
g[v[i][0].s].pb(i);
}
cout<<ans<<'\n';
REP1(i,n){
if(!col[i]){
col[i]=1;
dfs(i);
}
if(col[i]==1) cout<<'B';
else cout<<'D';
}
}