# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
800880 | amogususus | Radio (COCI22_radio) | C++17 | 18 ms | 2160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast,unroll-loops,inline")
#pragma GCC target("avx2,bmi,bmi2")
#include<iostream>
#include<bitset>
#include<algorithm>
#include<numeric>
#define ll int
#define endl '\n'
#define open(name) if(fopen(name".inp", "r")){freopen(name".inp", "r", stdin); freopen(name".out", "w", stdout);}
using namespace std;
const int maxN=100001;
const int mod=1e9+7;
ll n,q;
ll spf[maxN],c[maxN];
bitset<maxN> a;
void Enter(){
cin>>n>>q;
ll cnt=0;
while(q--){
char t;
ll u,v;
cin>>t>>u;
if(t=='S'){
if(a[u]){
a[u]=0;
while(u!=1){
ll x=spf[u];
while(u%x==0)u/=x;
if(c[x]==2)cnt--;
c[x]--;
}
} else {
a[u]=1;
while(u!=1){
ll x=spf[u];
while(u%x==0)u/=x;
if(c[x]==1)cnt++;
c[x]++;
}
}
} else {
cin>>v;
if(u==1&&v==n)cout<<(cnt?"YES":"NO")<<endl;
else {
bool f=0;
for(int i=a._Find_next(u-1);i<v;i=a._Find_next(i))
for(int j=a._Find_next(i);j<=v;j=a._Find_next(j))
if(__gcd(i,j)!=1){f=1;i=v+1;break;}
cout<<(f?"YES":"NO")<<endl;
}
}
}
}
//amogus
signed main(){
iota(spf,spf+maxN,0);
for(int i=2;i<maxN;i++)if(spf[i]==i)for(int j=i*2;j<maxN;j+=i)spf[j]=i;
open("RADIO");
cin.tie(nullptr);ios_base::sync_with_stdio(NULL);
//int t=1;cin>>t;while(t--)
Enter();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |