05 2020 档案
摘要:打表找规律eee #include<cstdio> using namespace std; typedef long long ll; ll p,q; //int main() //{ // ios::sync_with_stdio(false); // int p,q; // while(1)
阅读全文
摘要:#include<bits/stdc++.h> using namespace std; typedef long long ll; inline int read(ll &x){ int f=0;x=0;char ch=getchar(); for(;!isdigit(ch);ch=getchar
阅读全文
摘要:https://www.luogu.com.cn/blog/yousiki/abcd-solution https://www.luogu.com.cn/contest/29420
阅读全文
摘要:n<=15 a,b<=10^9 N<=10^4 #include<cstdio> #define LL long long int n, a, b, ans, t[20]; LL gcd(LL x, LL y) { if (!y) return x; return gcd(y, x%y); } vo
阅读全文
摘要:题目见洛谷 eee //图论做法+高精 #include <iostream> #include <string> using namespace std; string str; int k,vis[10][10],f[10],num[101]; inline void floyd() { //弗
阅读全文
摘要:#include <iostream> #include <cstdio> #include <cstring> using namespace std; const int N=1e4+5; int head[N];//链式地址 int cnt=0;//边的下标 struct node{ int
阅读全文
摘要:题目描述 由于去 NOI 的火车“堵”了数不清时间,小 Z 和小 D 打完 ETG,闲着无聊开 始看今年的 JSOI 省选题,并尝试着修改题目: 对于一个长度为L≥2的序列,X :x1,x2,...,xL,如果满足对于任意的1≤i< j≤L,均有xi+xj为质数,则他们把X称为一个“质数序列”。 现
阅读全文