hdu 1016 Prime Ring Problem (dfs)

來源:互聯網
上載者:User

http://acm.hdu.edu.cn/showproblem.php?pid=1016

 1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 bool isp[40], vis[20];                        //isp[]素數標記數組 5 int n, a[20]; 6 bool is_prime(int n)                          //n >= 2 7 { 8     bool flag = 1; 9     for (int i = 2; i * i <= n; ++i)10         if (n % i == 0)11         {12             flag = 0;13             break;14         }15     return flag;16 }17 void dfs(int cur)                            //調用dfs(1)18 {19     if (cur == n && isp[a[0]+a[n-1]])        //遞迴邊界20     {21         for (int i = 0; i < n - 1; ++i)22             printf("%d ", a[i]);23         printf("%d\n", a[n-1]);24     }25     else26     {27         for (int i = 2; i <= n; ++i)        //嘗試放置剩餘的數28             if (!vis[i] && isp[i+a[cur-1]])29             {30                 a[cur] = i;31                 vis[i] = 1;                //標記32                 dfs(cur + 1);33                 vis[i] = 0;                //清除標記34             }35     }36 }37 int main()38 {39     for (int i = 2; i <= 40; ++i)            //產生素數標記40         isp[i] = is_prime(i);41     int cnt = 0;42     while (scanf("%d", &n) != EOF)43     {44         ++cnt;45         memset(vis, 0, sizeof(vis));46         for (int i = 0; i < n; ++i)47             a[i] = i + 1;48         printf("Case %d:\n", cnt);49         dfs(1);50         printf("\n");51     }52     return 0;53 }

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.