del
del
Hazelxcf
jmp 0:0x7c00
展开
-
K. Lonely Numbers
K. Lonely Numbers 题意: two different numbers a and b are friends if gcd(a,b), agcd(a,b), bgcd(a,b) can form sides of a triangle. 写了几个数字之后发现,孤单数字是素数, 但是素数不一定是孤单数字,如果他的平方存在,就不是 eg7,49 7,1,7 所以 把所有的素数判断出来,如果平方存在,--;否则++。 跑一边前缀和就可以了 坑点: 1.数据问题 判断的时候,两个素数的乘积会原创 2020-10-19 20:51:31 · 260 阅读 · 0 评论 -
cf 1443 B. Saving the City
传送门 可以选择激活或者放置炸弹,1的位置表示有炸弹 #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; int t,n,sa,sb; char ch[maxn]; struct node{ int a,b; }e[maxn]; int main(){ //ios::sync_with_stdio(0); cin >> t; while(t--){ for(原创 2020-11-07 07:54:15 · 138 阅读 · 0 评论