acwing算法提高之数学知识--同余和矩阵乘法

目录

  • 1 介绍
  • 2 训练

1 介绍

本博客用来记录同余和矩阵乘法相关的题目。

2 训练

题目1:203同余方程

C++代码如下,

#include <iostream>
#include <algorithm>
#include <cstring>using namespace std;typedef long long LL;int exgcd(int a, int b, int &x, int &y) {if (!b) {x = 1, y = 0;return a;}int d = exgcd(b, a % b, y, x);y -= a / b * x;return d;
}int main() {int a, b;cin >> a >> b;int x, y;exgcd(a, b, x, y);cout << (x % b + (LL)b) % b << endl;return 0;
}

题目2:222青蛙的约会

C++代码如下,

#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;LL exgcd(LL a, LL b, LL &x, LL &y) {if (!b) {x = 1, y = 0;return a;}LL d = exgcd(b, a % b, y, x);y -= a / b * x;return d;
}int main() {LL a, b, m, n, L;cin >> a >> b >> m >> n >> L;LL x, y;LL d = exgcd(m - n, L, x, y);if ((b - a) % d) puts("Impossible");else {x *= (b - a) / d;LL t = abs(L / d);cout << (x % t + t) % t << endl;}return 0;
}

题目3:202最幸运的数字

C++代码如下,

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;LL qmul(LL a, LL k, LL b) {LL res = 0;while (k) {if (k & 1) res = (res + a) % b;a = (a + a) % b;k >>= 1;}return res;
}LL qmi(LL a, LL k, LL b) {LL res = 1;while (k) {if (k & 1) res = qmul(res, a, b);a = qmul(a, a, b);k >>= 1;}return res;
}LL get_euler(LL C) {LL res = C;for (LL i = 2; i <= C / i; ++i) {if (C % i == 0) {while (C % i == 0) C /= i;res = res / i * (i - 1);}}if (C > 1) res = res / C * (C - 1);return res;
}int main() {int T = 1;LL L;while (cin >> L, L) {int d = 1;while (L % (d * 2) == 0 && d * 2 <= 8) d *= 2;LL C = 9 * L / d;LL phi = get_euler(C);LL res = 1e18;if (C % 2 == 0 || C % 5 == 0) res = 0;else {for (LL d = 1; d * d <= phi; d++) {if (phi % d == 0) {if (qmi(10, d, C) == 1) res = min(res, d);if (qmi(10, phi / d, C) == 1) res = min(res, phi / d);}}}printf("Case %d: %lld\n", T++, res);}return 0;
}

题目4:1298曹冲养猪

C++代码如下,

#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;const int N = 10;int n;
int A[N], B[N];void exgcd(LL a, LL b, LL &x, LL &y) {if (!b) x = 1, y = 0;else {exgcd(b, a % b, y, x);y -= a / b * x;}
}int main() {scanf("%d", &n);LL M = 1;for (int i = 0; i < n; ++i) {scanf("%d%d", &A[i], &B[i]);M *= A[i];}LL res = 0;for (int i = 0; i < n; ++i) {LL Mi = M / A[i];LL ti, x;exgcd(Mi, A[i], ti, x);res += B[i] * Mi * ti;}cout << (res % M + M) % M << endl;return 0;
}

题目5:1303斐波那契前 n 项和

C++代码如下,

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;const int N = 3;int n, m;void mul(int c[], int a[], int b[][N]) {int temp[N] = {0};for (int i = 0; i < N; ++i) {for (int j = 0; j < N; ++j) {temp[i] = (temp[i] + (LL)a[j] * b[j][i]) % m;}}memcpy(c, temp, sizeof temp);
}void mul(int c[][N], int a[][N], int b[][N]) {int temp[N][N] = {0};for (int i = 0; i < N; ++i) {for (int j = 0; j < N; ++j) {for (int k = 0; k < N; ++k) {temp[i][j] = (temp[i][j] + (LL)a[i][k] * b[k][j]) % m;}}}memcpy(c, temp, sizeof temp);
}int main() {cin >> n >> m;int f1[N] = {1, 1, 1};int a[N][N] = {{0, 1, 0},{1, 1, 1},{0, 0, 1}};n--;while (n) {if (n & 1) mul(f1, f1, a);mul(a, a, a);n >>= 1;}cout << f1[2] % m << endl;return 0;
}

题目6:1304佳佳的斐波那契

C++代码如下,

#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;const int N = 4;int n, m;void mul(int c[][N], int a[][N], int b[][N]) {static int t[N][N];memset(t, 0, sizeof t);for (int i = 0; i < N; ++i) {for (int j = 0; j < N; ++j) {for (int k = 0; k < N; ++k) {t[i][j] = (t[i][j] + (LL)a[i][k] * b[k][j]) % m;}}}memcpy(c, t, sizeof t);
}int main() {cin >> n >> m;int f1[N][N] = {1, 1, 1, 0};int a[N][N] = {{0, 1, 0, 0},{1, 1, 1, 0},{0, 0, 1, 1},{0, 0, 0, 1}};int k = n - 1;while (k) {if (k & 1) mul(f1, f1, a);mul(a, a, a);k >>= 1;}cout << (((LL)n * f1[0][2] - f1[0][3]) % m + m) % m << endl;return 0;
}

题目7:1305GT考试

C++代码如下,

#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;const int N = 25;int n, m, mod;
char str[N];
int ne[N];
int a[N][N];void mul(int c[][N], int a[][N], int b[][N]) {static int t[N][N];memset(t, 0, sizeof t);for (int i = 0; i < m; ++i) {for (int j = 0; j < m; ++j) {for (int k = 0; k < m; ++k) {t[i][j] = (t[i][j] + a[i][k] * b[k][j]) % mod;}}}memcpy(c, t, sizeof t);
}int qmi(int k) {int f0[N][N] = {1};while (k) {if (k & 1) mul(f0, f0, a);mul(a, a, a);k >>= 1;}int res = 0;for (int i = 0; i < m; ++i) res = (res + f0[0][i]) % mod;return res;
}int main() {cin >> n >> m >> mod;cin >> str + 1;for (int i = 2, j = 0; i <= m; ++i) {while (j && str[j + 1] != str[i]) j = ne[j];if (str[j+1] == str[i]) j++;ne[i] = j;}for (int j = 0; j < m; ++j) {for (int c = '0'; c <= '9'; ++c) {int k = j;while (k && str[k+1] != c) k = ne[k];if (str[k+1] == c) k++;if (k < m) a[j][k]++;}}cout << qmi(n) << endl;return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/831449.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Vue ui 创建vue项目,详细使用攻略。

1.安装及启动 1.1 Vue ui 使用前提是全局安装vue.js 命令如下 npm install vue -g 1.2 安装过Vue.js 之后 随便在自己系统的一个地方打开命令面板 1.3 使用命令启动vue ui面板创建项目 vue ui 如图运行后显示这种就是启动成功&#xff0c;成功之后会弹出页面或者直接访问你的…

汇编语言-内中断

概念&#xff1a; 任何一个通用 CPU 都具备一种能力, 可以在执行完当前正在执行的指令之后, 检测到从 CPU 外部发送过来的或者内部产生的一种特殊信息, 并且可以立即对所接受到的信息进行处理&#xff0c;这种特殊的信息称为&#xff1a; 中断信息 中断意味着 CPU 不再继续…

opencv invert函数

在OpenCV中&#xff0c;cv::invert函数用于计算矩阵的逆。它的语法如下&#xff1a; bool cv::invert(InputArray src, OutputArray dst, int flagsDECOMP_LU)其中&#xff1a; src 是输入矩阵&#xff08;2x2或者NxN&#xff09;。dst 是输出矩阵&#xff0c;即计算得到的逆…

伦敦金的交易时间段都适合投资吗?

是所有的交易时间段都适合投资。首先&#xff0c;让我们了解伦敦金的交易时间。伦敦金市场的交易时间分为两个主要时段&#xff1a;亚洲盘和欧美盘。亚洲盘通常在北京时间早晨6点至下午5点半左右&#xff0c;而欧美盘则从北京时间晚上8点半开始&#xff0c;一直到次日早晨4点半…

什么是gcc-arm-linux-gnueabihf?

2024年5月3日&#xff0c;周五晚上 gcc-arm-linux-gnueabihf 是针对 ARM 架构&#xff08;ARMv7 和 ARMv8&#xff09;的 Linux 系统开发的 GNU C/C 编译器套件&#xff0c;可以在 x86 或 x86_64 架构的主机上使用&#xff0c;用于交叉编译 ARM Linux 应用程序和库。 gcc-arm-…

痉挛性斜颈患者早上运动还是下午运动更合适?选对了让治疗更简单!【北京仁爱堂】

对于痉挛性斜颈患者来说&#xff0c;选择合适的运动时间对于治疗的效果和舒适度至关重要。那么&#xff0c;痉挛性斜颈患者早上运动还是下午运动更合适呢&#xff1f;本文将从多个角度对此进行分析&#xff0c;帮助患者找到最适合自己的运动时间。 首先&#xff0c;我们需要了…

python学习笔记----文件操作(八)

一、 open() 函数 在 Python 中&#xff0c;处理文件包括读取和写入操作&#xff0c;是通过使用内置的 open() 函数来实现的。 语法&#xff1a; open(file, mode"r", encoding"utf-8") file: 文件路径。mode: 文件打开模式&#xff1a; ‘r’&#xff…

特征提取(Feature Extraction)常见统计特征笔记(三)

统计特征是描述数据集中值的一组量&#xff0c;通常用于了解数据的分布、集中趋势和变异程度。常见的统计特征包括均值、中位数、众数、标准差、方差等。下面会详细解释每个统计特征&#xff0c;并给出相应的Python代码。 1、均值&#xff08;Mean&#xff09;&#xff1a;所有…

Python的使用

1、打印&#xff1a;print&#xff08;‘hello’&#xff09; 2、Python的除法是数学意义上的除法 print&#xff08;2/3&#xff09; 输出&#xff1a;0.6666... 3、a18 a‘hello’ print(a) 可以直接输出 4、**2 表示2的平方 5、打印类型 print&#xff08;type&am…

答案自在你心——不求事事皆如愿,只求件件都无悔

时光荏苒&#xff0c;弹指间&#xff0c;似如梦初醒般又迎来了大学的第二个五一假期。多数人看来&#xff0c;又是一个千载难逢的度假时光&#xff0c;于我而言&#xff0c;心里却一直紧绷一根迟迟难以松弛的弦。也许是习惯了平常忙忙碌碌的生活节奏&#xff0c;突然停下来&…

轻松管理Java开发环境:SDKMAN!带来的便捷革命

前言 在当今软件开发的潮流中&#xff0c;有效地管理开发环境对于项目的顺利进行至关重要。随着项目规模的不断扩大和不同软件版本的需求增加&#xff0c;手动管理各种开发工具变得愈发繁琐。幸运的是&#xff0c;随着SDKMAN!的出现&#xff0c;Java开发者不再需要为此烦恼。这…

zookeeper数据迁移至clickhouse-keeper

1&#xff09;找到zookeeper主节点 zkServer.sh status 查看返回结果&#xff1a; ZooKeeper JMX enabled by default Using config: /conf/zoo.cfg Client port found: 2181. Client address: localhost. Client SSL: false.Mode: leader Mode说明&#xff1a;值为leader 代表…

linux下载压缩包

比如我要下载的压缩包地址为&#xff1a; http://calvin.inf.ed.ac.uk/wp-content/uploads/data/cocostuffdataset/cocostuff-10k-v1.1.zip 1.创建文件夹并切换到这个目录下 2.用wget获取压缩包 压缩包下好了 3.解压 如果是 tar.gz包解压 tar -zxvf 也可以解压到具体的目录…

手撸Mybatis(一)——代理mapper

引言 最近刚写完毕设&#xff0c;闲来无事&#xff0c;看到网上有一个手撸Mybatis的教程&#xff0c;于是想自己实现一个简易版的Mybatis。 本专栏的源码&#xff1a;https://gitee.com/dhi-chen-xiaoyang/yang-mybatis。 创建简单的映射器代理工厂 在使用mybatis的时候&…

24考研双非上岸武汉理工大学电子信息专硕,855考研经验

目录 一、考研择校经验 二、武理考研初试经验 三、武理考研复试经验 一、考研择校经验 我建议学弟学妹们确定院校时没必要一上来就说我一定要考某个院校。其实考哪个学校是要在考研备考的过程中慢慢探索&#xff0c;慢慢研究的&#xff0c;不过最晚9月初一定要确定院校了&a…

Redis-01

Redis是一个开源的内存数据结构存储系统&#xff0c;可以用作数据库、缓存和消息中间件。它支持多种数据结构&#xff0c;如字符串、哈希表、列表、集合、有序集等&#xff0c;并提供了丰富的处理这些数据结构的命令。 Redis具有以下特点&#xff1a; 快速&#xff1a;Redis的…

识蒸馏十大关键概念详解:从教师-学生范式到模型压缩和重生网络

知识蒸馏(Knowledge Distillation)任务通常会使用以下术语和表述: Knowledge Distillation (KD): 知识蒸馏的直接称呼,指从一个大型复杂的教师模型(teacher model)中提取知识,并传递给一个小型简单的学生模型(student model)的过程。Teacher-Student Framework: 教师-学生框架…

在 Python 编程语言中:[::-1] 的原理和作用、lambda 函数的功能和含义、== 和 is 的区别

&#x1f349; CSDN 叶庭云&#xff1a;https://yetingyun.blog.csdn.net/ Python 编程语言中&#xff0c;[::-1] 的原理和作用到底是什么&#xff1f; 在 Python 中&#xff0c;[::-1] 是一种常见的切片操作&#xff0c;用于字符串、列表等序列数据类型。这种操作的目的是将序…

Python语言在地球科学中地理、气象、气候变化、水文、生态、传感器等数据可视化到常见数据分析方法的使用

Python是功能强大、免费、开源&#xff0c;实现面向对象的编程语言&#xff0c;Python能够运行在Linux、Windows、Macintosh、AIX操作系统上及不同平台&#xff08;x86和arm&#xff09;&#xff0c;Python简洁的语法和对动态输入的支持&#xff0c;再加上解释性语言的本质&…

doxygen 辅助阅读代码的神器

简介 Doxygen是一个文档生成工具&#xff0c;主要用于编写编程语言的软件文档。它最初是为C设计的&#xff0c;但后来增加了对C、C#、Java、Objective-C、Python、IDL&#xff08;在某些情况下还有PHP、C#和D&#xff09;的支持。Doxygen可以从一组带有文档注释的源代码文件中…