zoukankan      html  css  js  c++  java
  • Codeforces Round #439 (Div. 2) Problem C (Codeforces 869C)

    — This is not playing but duty as allies of justice, Nii-chan!

    — Not allies but justice itself, Onii-chan!

    With hands joined, go everywhere at a speed faster than our thoughts! This time, the Fire Sisters — Karen and Tsukihi — is heading for somewhere they've never reached — water-surrounded islands!

    There are three clusters of islands, conveniently coloured red, blue and purple. The clusters consist of ab and c distinct islands respectively.

    Bridges have been built between some (possibly all or none) of the islands. A bridge bidirectionally connects two different islands and has length 1. For any two islands of the same colour, either they shouldn't be reached from each other through bridges, or the shortest distance between them is at least 3, apparently in order to prevent oddities from spreading quickly inside a cluster.

    The Fire Sisters are ready for the unknown, but they'd also like to test your courage. And you're here to figure out the number of different ways to build all bridges under the constraints, and give the answer modulo 998 244 353. Two ways are considered different if a pair of islands exist, such that there's a bridge between them in one of them, but not in the other.

    Input

    The first and only line of input contains three space-separated integers ab and c (1 ≤ a, b, c ≤ 5 000) — the number of islands in the red, blue and purple clusters, respectively.

    Output

    Output one line containing an integer — the number of different ways to build bridges, modulo 998 244 353.

    Examples
    input
    1 1 1
    output
    8
    input
    1 2 2
    output
    63
    input
    1 3 5
    output
    3264
    input
    6 2 9
    output
    813023575
    Note

    In the first example, there are 3 bridges that can possibly be built, and no setup of bridges violates the restrictions. Thus the answer is 23 = 8.

    In the second example, the upper two structures in the figure below are instances of valid ones, while the lower two are invalid due to the blue and purple clusters, respectively.


      题目大意 有3个群岛,每个群岛中有一些互不相同的岛屿,现在建一些桥,使得同一群岛内的两个岛屿要么不连通要么最短路至少经过3条桥。给定三个群岛包含的岛数,求合法的建桥的方案数。

      显然有某个群岛中的某个岛只能连接其他群岛中的一个岛。群岛与群岛之间的建桥互相独立,所以考虑分开计算。

      考虑两个群岛之间建立k座桥,那么方案数就是

      所以对于两个群岛之间的建桥方案数for一遍就求完了,最后把答案乘起来就行了。

    Code

     1 /**
     2  * Codeforces
     3  * Problem#869C
     4  * Accepted
     5  * Time: 30ms
     6  * Memory: 0k
     7  */ 
     8 #include <bits/stdc++.h>
     9 #ifndef WIN32
    10 #define Auto "%lld"
    11 #else
    12 #define Auto "%I64d"
    13 #endif
    14 using namespace std;
    15 
    16 #define ll long long
    17 
    18 void exgcd(ll a, ll b, ll& d, ll &x, ll &y) {
    19     if(!b)    {
    20         d = a, x = 1, y = 0;
    21     } else {
    22         exgcd(b, a % b, d, y, x);
    23         y -= (a / b) * x; 
    24     }
    25 }
    26 
    27 ll inv(ll a, ll n) {
    28     ll d, x, y;
    29     exgcd(a, n, d, x, y);
    30     return (x < 0) ? (x + n) : (x);
    31 }
    32 
    33 const int moder = 998244353;
    34 int a, b, c;
    35 
    36 inline void init() {
    37     scanf("%d%d%d", &a, &b, &c); 
    38 }
    39 
    40 long long calc(int x, int y) {
    41     long long rt = 1;
    42     long long Px = 1, Py = 1;
    43     for(int i = 1; i <= x && i <= y; i++) {
    44         Px = (Px * (x - i + 1) % moder) * inv(i, moder) % moder;
    45         Py = (Py * (y - i + 1)) % moder;
    46         rt = (rt + (Px * Py % moder)) % moder;
    47     }
    48     return rt;
    49 }
    50 
    51 inline void solve() {
    52     long long ra = calc(a, b);
    53     long long rb = calc(b, c);
    54     long long rc = calc(c, a);
    55     long long res = ((ra * rb) % moder) * rc % moder;
    56     printf(Auto, res);
    57 }
    58 
    59 int main() {
    60     init();
    61     solve();
    62     return 0;
    63 }
  • 相关阅读:
    页眉插入图片,文字和页号(码)的设置
    MIT_JOS_Lab5
    MIT_JOS_Lab4_PartB_and_PartC
    MIT_JOS_Lab4_PartA
    Monte Carlo Integration
    A strategy to quantify embedding layer
    From DFA to KMP algorithm
    A problem of dimension in Vector Space and It's nullspace
    Pytorch 模型的存储与加载
    Jensen's inequality 及其应用
  • 原文地址:https://www.cnblogs.com/yyf0309/p/7635476.html
Copyright © 2011-2022 走看看