Xét một phương trình có dạng như sau: x + y + z = n ( n là một số nguyên dương ). Phương trình này có thể có vô số nghiệm. Tuy nhiên ở đây ta chỉ quan tâm các nghiệm (x,y,z) mà x,y,z là các số nguyên tố. Yêu cầu: Cho số nguyên dương N, hãy tìm tất cả các nghiệm (x,y,z) trong đó x < y < z. INPUT: Một dòng duy nhất ghi một số nguyên dương N ( N < 5000 ). OUTPUT: Gồm N dòng, dòng thứ i cho biết bộ nghiệm (x,y,z) thứ i tìm được. Nếu phương trình không có nghiệm nào thì in ra -1. Ví dụ input 5 output -1 input 8 output 2 3 3

1 câu trả lời

#include<bits/stdc++.h>
using namespace std;
void Sieve(int n,bool prime[])
{
 memset(prime,true,n+1);
 prime[0] = false;
 prime[1] = false;
 int sqrtn = trunc(sqrt(n));
 for(int i=2;i<=sqrtn;i++)
 {
  if (prime[i]==true)
  {
   for(int j=i;j<=trunc(n/i);j++)
   {
    prime[i*j] = false;
   }
  }
 }
}
int main()
{
 int n,i,j;cin >> n;
 bool prime[n+1];
 bool kt=false;
 Sieve(n,prime);
 for (i=2;i<=n;i++)
 {
  if(prime[i]==true)
   for(j=i;j<=n-i;j++)
    if(prime[j]==true && prime[n-i-j]==true)
     if(n-i-j>=j && j>=i)
     {
      printf("%d %d %d\n",i,j,n-i-j);
      kt=true;
     }  
 }
 if(kt==false)
  cout<<"-1";
 return 0;
}

Câu hỏi trong lớp Xem thêm

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
17 giờ trước