传送门 L - 同余方程 题意: 关于x的同余方程ax三1(mod b)的最小正整数解。 思路: 板子题 #include<bits/stdc++.h> using namespace std; #define inf 0x3f3f3f3f #define MAX 500000 + 5 typedef long long ll ; int x, y, a, b, k; void exgcd(int a, int b) { if(!b) { x = 1; y = 0; return; } exgcd(...