05 2020 档案

该文被密码保护。
posted @ 2020-05-26 07:01 INFP 阅读(13) 评论(0) 推荐(0) 编辑
摘要:打表找规律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) 阅读全文
posted @ 2020-05-14 08:13 INFP 阅读(153) 评论(1) 推荐(0) 编辑
摘要:#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 阅读全文
posted @ 2020-05-12 21:34 INFP 阅读(132) 评论(1) 推荐(0) 编辑
摘要:https://www.luogu.com.cn/blog/yousiki/abcd-solution https://www.luogu.com.cn/contest/29420 阅读全文
posted @ 2020-05-07 20:05 INFP 阅读(122) 评论(2) 推荐(0) 编辑
该文被密码保护。
posted @ 2020-05-07 17:52 INFP 阅读(1) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2020-05-06 19:57 INFP 阅读(98) 评论(0) 推荐(0) 编辑
摘要:题目见洛谷 eee //图论做法+高精 #include <iostream> #include <string> using namespace std; string str; int k,vis[10][10],f[10],num[101]; inline void floyd() { //弗 阅读全文
posted @ 2020-05-05 21:48 INFP 阅读(232) 评论(0) 推荐(1) 编辑
摘要:#include <iostream> #include <cstdio> #include <cstring> using namespace std; const int N=1e4+5; int head[N];//链式地址 int cnt=0;//边的下标 struct node{ int 阅读全文
posted @ 2020-05-04 21:16 INFP 阅读(135) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2020-05-04 20:50 INFP 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2020-05-04 20:41 INFP 阅读(0) 评论(0) 推荐(0) 编辑
摘要:题目描述 由于去 NOI 的火车“堵”了数不清时间,小 Z 和小 D 打完 ETG,闲着无聊开 始看今年的 JSOI 省选题,并尝试着修改题目: 对于一个长度为L≥2的序列,X :x1,x2,...,xL,如果满足对于任意的1≤i< j≤L,均有xi+xj为质数,则他们把X称为一个“质数序列”。 现 阅读全文
posted @ 2020-05-01 15:48 INFP 阅读(668) 评论(0) 推荐(1) 编辑