第六講 圖(上)

来源:http://www.cnblogs.com/VincentValentine/archive/2017/05/14/6853832.html
-Advertisement-
Play Games

06 圖1:列出連通集. Description: 給定一個有N個頂點和E條邊的無向圖,請用DFS和BFS分別列出其所有的連通集。假設頂點從0到N 1編號。進行搜索時,假設我們總是從編號最小的頂點出發,按編號遞增的順序訪問鄰接點。 Input: 輸入第1行給出2個整數N(0, 10)和E,分別是圖的 ...


06-圖1:列出連通集.
Description:

給定一個有N個頂點和E條邊的無向圖,請用DFS和BFS分別列出其所有的連通集。假設頂點從0到N-1編號。進行搜索時,假設我們總是從編號最小的頂點出發,按編號遞增的順序訪問鄰接點。

Input:

輸入第1行給出2個整數N(0, 10)和E,分別是圖的頂點數和邊數。隨後E行,每行給出一條邊的兩個端點。每行中的數字之間用1空格分隔。

Output:

按照"{v1, v2..., vk}"的格式,每行輸出一個連通集。先輸出DFS的結果,再輸出BFS的結果。

SampleInput:

8 6
0 7
0 1
2 0
4 1
2 4
3 5

SampleOutput:

{ 0 1 4 2 7 }
{ 3 5 }
{ 6 }
{ 0 1 2 7 4 }
{ 3 5 }
{ 6 }

Codes:
//#define LOCAL

#include <cstdio>
#include <queue>
using namespace std;

#define M 10
int ne, nv, check[M], g[M][M];

void bG() {
    int i, v1, v2;
    scanf("%d%d", &nv, &ne);
    for(i=0; i<ne; ++i) {
        scanf("%d%d", &v1, &v2);
        g[v1][v2] = g[v2][v1] = 1;
    }
}

int cV() {
    int i;
    for(i=0; i<nv; ++i) 
        if(!check[i]) break;
    if(i == nv) return -1;
    return i;
}

void cC() { for(int i=0; i<nv; ++i) check[i] = 0; }

int BFS() {
    int i, j; queue<int> q;
    i = cV();
    if(i == -1) return i; 
    q.push(i); check[i] = 1;
    printf("{ %d ", i);
    while(!q.empty()) {
        int t = q.front(); q.pop();
        for(j=0; j<nv; ++j) 
            if(g[t][j]==1 && !check[j]) {
                check[j] = 1; printf("%d ", j);
                q.push(j);
            }
    }
    printf("}\n"); return BFS();
}

void DFS(int vi) {
    check[vi] = 1;
    printf("%d ", vi);
    for(int j=0; j<nv; ++j)
        if(g[vi][j]==1 && !check[j]) DFS(j);
}

int listDFS() {
    if(cV() == -1) return -1; printf("{ ");
    DFS(cV()); printf("}\n");
    return listDFS();
}

int main()
{
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    bG(); listDFS(); cC(); BFS();

    return 0;
}
06-圖2:Saving James Bond - Easy Version.
Description:

This time let us consider the situation in the movie "Live and Let Die" in which James Bond, the world's most famous spy, was captured by a group of drug dealers. He was sent to a small piece of land at the center of a lake filled with crocodiles. There he performed the most daring action to escape -- he jumped onto the head of the nearest crocodile! Before the animal realized what was happening, James jumped again onto the next big head... Finally he reached the bank before the last crocodile could bite him (actually the stunt man was caught by the big mouth and barely escaped with his extra thick boot).

Assume that the lake is a 100 by 100 square one. Assume that the center of the lake is at (0,0) and the northeast corner at (50,50). The central island is a disk centered at (0,0) with the diameter of 15. A number of crocodiles are in the lake at various positions. Given the coordinates of each crocodile and the distance that James could jump, you must tell him whether or not he can escape.

Input:

Each input file contains one test case. Each case starts with a line containing two positive integers N(<=100), the number of crocodiles, and D, the maximum distance that James could jump. Then N lines follow, each containing the (x, y)(x,y) location of a crocodile. Note that no two crocodiles are staying at the same position.

Output:

For each test case, print in a line "Yes" if James can escape, or "No" if not.

SampleInput1:

14 20
25 -15
-25 28
8 49
29 15
-35 -2
5 28
27 -29
-8 -28
-20 -35
-25 -20
-13 29
-30 15
-35 40
12 12

SampleOutput1:

Yes

SampleInput2:

4 13
-12 12
12 12
-12 -12
12 -12

SampleOutput2:

No

Codes:
//#define LOCAL

#include <cstdio>
#include <cmath>

struct C { double x, y; };

int rC(double d, C p) { return (15+d)*(15+d)>=p.x*p.x+p.y*p.y; }
int rBe(double d, C p1, C p2) { return d*d>=(p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y); }
int rBa(double d, C p) {return p.x<=-50+d||p.x>=50-d||p.y>=50-d||p.y<=d-50;}
int DFS(double d, C *cr, int v, int *vi, int n) {
    if(rBa(d, cr[v])) return 1;
    for(int i=0; i<n; ++i) 
        if(!vi[i] && rBe(d, cr[v], cr[i])) {
            vi[i] = 1;
            if(DFS(d, cr, i, vi, n)) return 1;
    }
    return 0;
}

int main()
{
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    int i, n, f = 0, vi[100] = {}; double d;
    scanf("%d%lf", &n, &d);
    if(d >= 35) { printf("Yes\n"); return 0; }
    C cr[102];
    for(i=0; i<n; ++i) scanf("%lf%lf", &cr[i].x, &cr[i].y);

    for(i=0; i<n; ++i) 
        if(!vi[i] && rC(d, cr[i])) {
            vi[i] = 1;
            if(DFS(d, cr, i, vi, n)) { printf("Yes\n"); f = 1; break; }
        }
    if(!f) printf("No\n");

    return 0;
}
06-圖3:六度空間.
Description:

“六度空間”理論又稱作“六度分隔(Six Degrees of Separation)”理論。這個理論可以通俗地闡述為:“你和任何一個陌生人之間所間隔的人不會超過六個,也就是說,最多通過五個人你就能夠認識任何一個陌生人。”如圖1所示。“六度空間”理論雖然得到廣泛的認同,並且正在得到越來越多的應用。但是數十年來,試圖驗證這個理論始終是許多社會學家努力追求的目標。然而由於歷史的原因,這樣的研究具有太大的局限性和困難。隨著當代人的聯絡主要依賴於電話、簡訊、微信以及網際網路上即時通信等工具,能夠體現社交網路關係的一手數據已經逐漸使得“六度空間”理論的驗證成為可能。

假如給你一個社交網路圖,請你對每個節點計算符合“六度空間”理論的結點占結點總數的百分比。

Input:

輸入第1行給出兩個正整數,分別表示社交網路圖的結點數N(1<N<=1000,表示人數)、邊數M(<=33×N,表示社交關係數)。隨後的M行對應M條邊,每行給出一對正整數,分別是該條邊直接連通的兩個結點的編號(節點從1到N編號)。

Output:

對每個結點輸出與該結點距離不超過6的結點數占結點總數的百分比,精確到小數點後2位。每個結節點輸出一行,格式為“結點編號:(空格)百分比%”。

SampleInput:

10 9
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10

SampleOutput:

1: 70.00%
2: 80.00%
3: 90.00%
4: 100.00%
5: 100.00%
6: 100.00%
7: 100.00%
8: 90.00%
9: 80.00%
10: 70.00%

Codes:
//#define LOCAL

#include <cstdio>
#include <cstring>
#include <queue>
#include <vector>
using namespace std;

#define M 100010
int m, n, vi[M];
vector<int> v[M];

int sds(int t) {
    queue<int> q; q.push(t); vi[t] = 1;
    int i, cN = 0, lN = 1, l = 0, cnt = 1;
    while(!q.empty()) {
        t = q.front(); q.pop(); --lN;
        for(i=0; i<v[t].size(); ++i) {
            if(!vi[v[t][i]]) {
                vi[v[t][i]] = 1; 
                q.push(v[t][i]); ++cN;
            }
        }
        if(!lN) {
            lN = cN; cN = 0;
            cnt += lN; ++l;
        }
        if(l == 6) break;
    }
    return cnt;
}


int main() {
    #ifdef LOCAL
        freopen("E:\\Temp\\input.txt", "r", stdin);
        freopen("E:\\Temp\\output.txt", "w", stdout);
    #endif

    int i, f, t, cnt;
    scanf("%d%d", &n, &m);
    while(m--) {
        scanf("%d%d", &f, &t);
        v[f].push_back(t); v[t].push_back(f);
    }

    for(i=1; i<=n; ++i) {
        cnt = sds(i);
        memset(vi, 0, sizeof(vi));
        printf("%d: %.2f%%\n", i, cnt*100.0/n);
    } 

    return 0;
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.順序結構 2分支結構 3.迴圈結構 4.控制迴圈結構 5.數組類型 6.深入數組 關於以上幾點請查看附件 http://files.cnblogs.com/files/214829qw/4.%E6%B5%81%E7%A8%8B%E6%8E%A7%E5%88%B6%E5%92%8C%E6%95%B ...
  • 1.javax.persistence.TransactionRequiredException: no transaction is in progress 出現該問題是我沒有開啟事務,我是在會員保存之前調用了doWork方法去設置setAutoCommit為true. 解決辦法:如果是用到了sp ...
  • 離開博客園很久了,自從找到工作,到現在基本沒有再寫過博客了。在大學培養起來的寫博客的習慣在慢慢的消失殆盡,感覺汗顏。所以現在要開始重新培養起這個習慣,定期寫博客不僅是對自己學習知識的一種沉澱,更是在督促自己要不斷的學習,不斷的進步。 最近在進一步學習Java併發編程,不言而喻,這部分內容是很重要的。 ...
  • 要處理XML文檔,就要先解析(parse)他,解析器時這樣一個程式,讀入一個文件,確認整個文件具有正確的格式,然後將其分解成各種元素,使得程式員能夠訪問這些元素,Java庫提供了兩種XML解析器: 像文檔對象模型(Document Object Model,DOM)解析器這樣的樹型解析器,他們將讀入... ...
  • 最近在處理wav相關文件,碰見一工具產生的ualw文件不帶header,順手用python給wav格式文件加頭處理,讓普通播放器也能播放。 (原文:http://www.cnblogs.com/ryhan/p/6854348.html) 相關代碼文件下載:files.cnblogs.com/file ...
  • 第二模塊學習: 生成器,迭代器,內置函數 生成器特點:只有在調用時才會生成相應的數據,運行的速度快! 示例: yield 生成器斷點緩存 可賦於變數 .send()可以為yield 傳值、數據 示例: 迭代器:Iterator 可以返回下一個值的迭代對象,就可以稱為迭代器 迭代對象:Iterable ...
  • Python 的列表數據類型包含更多的方法。這裡是所有的列表對象方法: 把一個元素添加到列表的結尾,相當於 a[len(a):] = [x]。 將一個給定列表中的所有元素都添加到另一個列表中,相當於 a[len(a):] = L。 在指定位置插入一個元素。第一個參數是準備插入到其前面的那個元素的索引 ...
  • 題目描述 設有n個正整數(n≤20),將它們聯接成一排,組成一個最大的多位整數。 例如:n=3時,3個整數13,312,343聯接成的最大整數為:34331213 又如:n=4時,4個整數7,13,4,246聯接成的最大整數為:7424613 輸入輸出格式 輸入格式: 第一行,一個正整數n。 第二行 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...