CF1792F1.Graph Coloring (easy version)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The only difference between the easy and the hard version is the constraint on n .
You are given an undirected complete graph on n vertices. A complete graph is a graph where each pair of vertices is connected by an edge. You have to paint the edges of the graph into two colors, red and blue (each edge will have one color).
A set of vertices S is red-connected if, for every pair of vertices (v1,v2) such that v1∈S and v2∈S , there exists a path from v1 to v2 that goes only through red edges and vertices from S . Similarly, a set of vertices S is blue-connected if, for every pair of vertices (v1,v2) such that v1∈S and v2∈S , there exists a path from v1 to v2 that goes only through blue edges and vertices from S .
You have to paint the graph in such a way that:
- there is at least one red edge;
- there is at least one blue edge;
- for each set of vertices S such that ∣S∣≥2 , S is either red-connected or blue-connected, but not both.
Calculate the number of ways to paint the graph, and print it modulo 998244353 .
输入格式
The first (and only) line contains one integer n ( 3≤n≤5⋅103 ).
输出格式
Print one integer — the number of ways to paint the graph, taken modulo 998244353 .
输入输出样例
输入#1
3
输出#1
6
输入#2
4
输出#2
50
输入#3
100
输出#3
878752271
输入#4
1337
输出#4
520628749