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 }
  • 相关阅读:
    VB连接Mysql数据库
    SASS优化响应式断点管理
    图像切割之(五)活动轮廓模型之Snake模型简单介绍
    Ubuntu的力量何在?
    开机黑屏 仅仅显示鼠标 电脑黑屏 仅仅有鼠标 移动 [已成功解决]
    thrift之默认传输类TTransportDefaults和虚拟传输类TVirtualTransport
    Java实现 蓝桥杯VIP 算法训练 水仙花数
    Java实现 蓝桥杯VIP 算法训练 求指数
    Java实现 蓝桥杯VIP 算法训练 求指数
    Java实现 蓝桥杯VIP 算法训练 求指数
  • 原文地址:https://www.cnblogs.com/yyf0309/p/7635476.html
Copyright © 2011-2022 走看看