摘要: 概率题。 1:爆枚 本蒟蒻不会概率dp,于是手搓枚举。 大抵是这么枚的: 如果区间里有它,好办,只能它赢 没他呢?就只能分类讨论。 中道崩殂的代码: #include<iostream> #include<vector> #include<string.h> using namespace std; 阅读全文
posted @ 2024-09-02 19:03 yzc_is_SadBee 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Gcd 板子。 注意“同一直线”,除2即可 #include<iostream> using namespace std; int Gcd(int a,int b){ int c; while(a){ c=b%a; b=a; a=c; } return b; } int main(){ int n, 阅读全文
posted @ 2024-09-02 18:40 yzc_is_SadBee 阅读(5) 评论(0) 推荐(0) 编辑