# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
344963 | Pichon5 | Lutrija (COCI19_lutrija) | C++17 | 2090 ms | 892 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
//salida rapida "\n"
//DECIMALES fixed<<sp(n)<<x<<endl;
//gcd(a,b)= ax + by
//lCB x&-x
//set.erase(it) - ersases the element present at the required index//auto it = s.find(element)
//set.find(element) - iterator pointing to the given element if it is present else return pointer pointing to set.end()
//set.lower_bound(element) - iterator pointing to element greater than or equal to the given element
//set.upper_bound(element) - iterator pointing to element greater than the given element
// | ^
using namespace std;
bool is_prime(ll x){
if(x<2){
return false;
}
for(int i=2;i<=sqrt(x);i++){
if(x%i==0){
return false;
}
}
return true;
}
vi nodos;
map<ll,vll>G;
map<ll,bool>vis;
map<ll,vll>UF;
vll ans;
ll A,B;
void dfs(ll u){
if(u==B){
ans=UF[B];
}
vis[u]=true;
for(auto it : G[u]){
if(!vis[it]){
UF[it]=UF[u];
UF[it].pb(it);
dfs(it);
}
}
}
int main()
{
cin>>A>>B;
vis.clear();
for(int i=A-4;i<=A+4;i++){
if(is_prime(i) && vis[i]==false){
nodos.pb(i);
vis[i]=true;
}
}
for(int i=B-4;i<=B+4;i++){
if(is_prime(i) && vis[i]==false){
nodos.pb(i);
vis[i]=true;
}
}
if(!vis[2ll]){
nodos.pb(2ll);
}
vis.clear();
for(int i=0;i<nodos.size();i++){
for(int l=i+1;l<nodos.size();l++){
if(is_prime(abs(nodos[i]-nodos[l]))){
G[nodos[i]].pb(nodos[l]);
G[nodos[l]].pb(nodos[i]);
}
}
}
UF[A].pb(A);
dfs(A);
if(ans.size()==0){
cout<<-1<<endl;
}else{
cout<<ans.size()<<endl;
for(int i=0;i<ans.size();i++){
cout<<ans[i]<<" ";
}
}
return 0;
}
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |