WC模拟(1.14) T2 Everyone will meet some difficult

2023-11-02 11:18

本文主要是介绍WC模拟(1.14) T2 Everyone will meet some difficult,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Everyone will meet some difficult

题目背景:

1.14 WC模拟T2  

分析:数学 + 数论

 

100分做法我不会,也不想去学,所以就说一下80分做法吧,首先,我们可以知道答案是

显然,对于一个固定的k,组合数是一个m - n次多项式,并且对于任意k,这个多项式的系数显然都是相同的,那么我们定义,ki次项系数为ak,那么显然:


显然对于ai,我们可以直接爆拆组合数在(m - n)2的时间搞定。

所以直接考虑后面部分,令:

直接用矩阵快速幂优化一下上面的递推式就可以了。

时间复杂度O((m - n)3log(m- n))

Source:


/*created by scarlyw
*/
#include <cstdio>
#include <string>
#include <algorithm>
#include <cstring>
#include <iostream>
#include <cmath>
#include <cctype>
#include <vector>
#include <set>
#include <queue>
#include <ctime>
#include <bitset>inline char read() {static const int IN_LEN = 1024 * 1024;static char buf[IN_LEN], *s, *t;if (s == t) {t = (s = buf) + fread(buf, 1, IN_LEN, stdin);if (s == t) return -1;}return *s++;
}/*
template<class T>
inline void R(T &x) {static char c;static bool iosig;for (c = read(), iosig = false; !isdigit(c); c = read()) {if (c == -1) return ;if (c == '-') iosig = true;	}for (x = 0; isdigit(c); c = read()) x = ((x << 2) + x << 1) + (c ^ '0');if (iosig) x = -x;
}
//*/const int OUT_LEN = 1024 * 1024;
char obuf[OUT_LEN], *oh = obuf;
inline void write_char(char c) {if (oh == obuf + OUT_LEN) fwrite(obuf, 1, OUT_LEN, stdout), oh = obuf;*oh++ = c;
}template<class T>
inline void W(T x) {static int buf[30], cnt;if (x == 0) write_char('0');else {if (x < 0) write_char('-'), x = -x;for (cnt = 0; x; x /= 10) buf[++cnt] = x % 10 + 48;while (cnt) write_char(buf[cnt--]);}
}inline void flush() {fwrite(obuf, 1, oh - obuf, stdout);
}///*
template<class T>
inline void R(T &x) {static char c;static bool iosig;for (c = getchar(), iosig = false; !isdigit(c); c = getchar())if (c == '-') iosig = true;	for (x = 0; isdigit(c); c = getchar()) x = ((x << 2) + x << 1) + (c ^ '0');if (iosig) x = -x;
}
//*/const int MAXN = 1000000 + 10;
const int mod = 1000000000 + 7;long long fac[MAXN], inv_fac[MAXN];
long long s, t, n, m;inline long long mod_pow(long long a, long long b) {int ans = 1;for (; b; b >>= 1, a = a * a % mod)if (b & 1) ans = ans * a % mod;return ans;
}inline void get_c() {fac[0] = 1;for (int i = 1; i < MAXN; ++i) fac[i] = fac[i - 1] * i % mod;inv_fac[MAXN - 1] = mod_pow(fac[MAXN - 1], mod - 2);for (int i = MAXN - 2; i >= 0; --i) inv_fac[i] = inv_fac[i + 1] * (i + 1) % mod;
}inline long long c(int n, int m) {if (n < m) return 0;return fac[n] * inv_fac[m] % mod * inv_fac[n - m] % mod; 
}inline void solve_1() {get_c();long long ans = 0;for (int i = 0, sign = 1; i <= n; ++i, sign = -sign) {ans = (((ans + (long long)sign * c(n, i) * c(s - i * t, m)) % mod) + mod) % mod;}std::cout << ans;
}const int MAXD = 100 + 10;struct matrix {int n;long long a[MAXD][MAXD];matrix(int n = 0) : n(n) {for (int i = 0; i <= n; ++i)for (int j = 0; j <= n; ++j)a[i][j] = 0;}inline matrix operator * (const matrix &c) const {matrix ret(n);for (int i = 0; i <= n; ++i)for (int k = 0; k <= n; ++k)for (int j = 0; j <= n; ++j)ret.a[i][j] += a[i][k] * c.a[k][j] % mod;for (int i = 0; i <= n; ++i)for (int j = 0; j <= n; ++j)ret.a[i][j] %= mod;return ret;}inline matrix operator ^ (int b) const {matrix ans(n), a = *this;for (int i = 0; i <= n; ++i) ans.a[i][i] = 1;for (; b; b >>= 1, a = a * a)if (b & 1) ans = ans * a;return ans;}
} ;long long last[MAXD], cur[MAXD], sum[MAXD], mul[MAXN];
inline void solve_2() {long long ans = 0;last[0] = 1, get_c(), s %= mod;for (int i = 0; i < m - n; ++i) {for (int j = 0; j <= i + 1; ++j) cur[j] = 0;for (int j = 0; j <= i; ++j) cur[j + 1] = last[j];for (int j = 0; j <= i; ++j) cur[j] = (cur[j] + last[j] * (s - i) % mod) % mod;for (int j = 0; j <= i + 1; ++j) last[j] = cur[j];}long long ret = 1;for (int i = 1; i <= m - n; ++i) ret = ret * i % mod;ret = mod_pow(ret, mod - 2);for (int i = 0; i <= m - n; ++i) cur[i] = cur[i] * ret % mod;for (int i = 1; i <= t; ++i) mul[i] = 1;sum[0] = t;for (int i = 1; i <= m - n; ++i) {for (int j = 1; j <= t; ++j)mul[j] = mul[j] * j % mod, sum[i] += mul[j];sum[i] %= mod;}matrix move(m - n);for (int i = 0; i <= m - n; ++i)for (int j = 0; j <= m - n; ++j)move.a[i][j] = c(j, i) * sum[j - i] % mod;move = (move ^ n);
//	for (int i = 0; i <= m - n; ++i, std::cout << '\n')
//		for (int j = 0; j <= m - n; ++j)
//			std::cout << move.a[i][j] << " ";for (int i = 0, sign = 1; i <= m - n; ++i, sign = -sign)ans += (long long)sign * cur[i] * move.a[0][i] % mod;ans = (ans % mod + mod) % mod;std::cout << ans;
}int main() {freopen("success.in", "r", stdin);freopen("success.out", "w", stdout);R(s), R(t), R(n), R(m);if (s < MAXN && m < MAXN) solve_1();else solve_2();return 0;
}

这篇关于WC模拟(1.14) T2 Everyone will meet some difficult的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/330245

相关文章

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

hdu4431麻将模拟

给13张牌。问增加哪些牌可以胡牌。 胡牌有以下几种情况: 1、一个对子 + 4组 3个相同的牌或者顺子。 2、7个不同的对子。 3、13幺 贪心的思想: 对于某张牌>=3个,先减去3个相同,再组合顺子。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOExcepti

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

每日一题|牛客竞赛|四舍五入|字符串+贪心+模拟

每日一题|四舍五入 四舍五入 心有猛虎,细嗅蔷薇。你好朋友,这里是锅巴的C\C++学习笔记,常言道,不积跬步无以至千里,希望有朝一日我们积累的滴水可以击穿顽石。 四舍五入 题目: 牛牛发明了一种新的四舍五入应用于整数,对个位四舍五入,规则如下 12345->12350 12399->12400 输入描述: 输入一个整数n(0<=n<=109 ) 输出描述: 输出一个整数

【算法专场】模拟(下)

目录 前言 38. 外观数列 算法分析 算法思路 算法代码 1419. 数青蛙 算法分析 算法思路 算法代码  2671. 频率跟踪器 算法分析 算法思路 算法代码 前言 在前面我们已经讲解了什么是模拟算法,这篇主要是讲解在leetcode上遇到的一些模拟题目~ 38. 外观数列 算法分析 这道题其实就是要将连续且相同的字符替换成字符重复的次数+

模拟实现vector中的常见接口

insert void insert(iterator pos, const T& x){if (_finish == _endofstorage){int n = pos - _start;size_t newcapacity = capacity() == 0 ? 2 : capacity() * 2;reserve(newcapacity);pos = _start + n;//防止迭代

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT

1 模拟——67. 二进制求和

1 模拟 67. 二进制求和 给你两个二进制字符串 a 和 b ,以二进制字符串的形式返回它们的和。 示例 1:输入:a = "11", b = "1"输出:"100"示例 2:输入:a = "1010", b = "1011"输出:"10101" 算法设计 可以从低位到高位(从后向前)计算,用一个变量carry记录进位,如果有字符没处理完或者有进位,则循环处理。两个字符串对

AMAZING AUCTION(简单模拟)

AMAZING AUCTION 时间限制: 3000 ms  |  内存限制: 65535 KB 难度:4 描述 Recently the auction house hasintroduced a new type of auction, the lowest price auction. In this new system,people compete for the lo