上一页 1 ··· 8 9 10 11 12
摘要: # 题目大意 对于等式 $\displaystyle\sum_{i=1}^{n}a_ix_i=b$ 求有多少 $b\in [l,r]$ 使得等式存在非负数解。 # 思路 典型的同余最短路,可先看看[跳楼机](https://www.luogu.com.cn/problem/P3403)([题解](h 阅读全文
posted @ 2023-08-22 19:24 One_JuRuo 阅读(13) 评论(1) 推荐(1) 编辑
摘要: # 思路 ### 第零步:规避精度问题 发现该题中正方形的放置在确定各正方形的大小后是固定的,而当正方形的大小同时变化相同倍数时,也可看做整个图像变化倍数,发现对答案没有影响,又发现遮挡和对角线有密切关系,而与边长无关系,再加上对角线等于 $\sqrt{2}$ 倍边长,出现了精度问题,所以为了规避这 阅读全文
posted @ 2023-08-22 19:23 One_JuRuo 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include using namespace std; int n,m,d,mod,w[200005],wt[200005],e[200005],ne[200005],h[200005],idx=1,t[800005],l[800005],r[800005],tag[800005] 阅读全文
posted @ 2023-08-22 16:49 One_JuRuo 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include using namespace std; const double eps=1e-8,pi=acos(-1.0); const int N=100005; inline int dcmp(double x){return (xeps)?1:0;}//判断正负 inli 阅读全文
posted @ 2023-08-22 16:48 One_JuRuo 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12