摘要:
random.cpp #include <bits/stdc++.h> #define ULL unsigned long long #define LL long long using namespace std; ULL random(ULL mod){return ((ULL)rand() < 阅读全文
摘要:
Day1: 第一题:水题 #include <iostream> #include <cstdio> #include <cstring> using namespace std; inline long long read(){ long long ans = 0, f = 1; char ch 阅读全文
摘要:
一:扩展欧拉定理的一种更简便的写法 void exgcd(int a,int b,int &d,int &x,int &y){ if(b) exgcd(b, a % b, d, y, x), y -= x * (a / b); else x = 1, y = 0, d = a; } 例:OJ 113 阅读全文
摘要:
T1 纯模拟,额外维护每个工件最后的建造时间即可。 #include <iostream> #include <cstdio> #include <cstring> using namespace std; inline long long read(){ long long ans = 0, f 阅读全文