1065 單身狗(PAT 乙級 C++實現)
阿新 • • 發佈:2019-01-11
“單身狗”是中文對於單身人士的一種愛稱。本題請你從上萬人的大型派對中找出落單的客人,以便給予特殊關愛。
輸入格式:
輸入第一行給出一個正整數N(<=50000),是已知夫妻/伴侶的對數;隨後N行,每行給出一對夫妻/伴侶——為方便起見,每人對應一個ID號,為5位數字(從00000到99999),ID間以空格分隔;之後給出一個正整數M(<=10000),為參加派對的總人數;隨後一行給出這M位客人的ID,以空格分隔。題目保證無人重婚或腳踩兩條船。
輸出格式:
首先第一行輸出落單客人的總人數;隨後第二行按ID遞增順序列出落單的客人。ID間用1個空格分隔,行的首尾不得有多餘空格。
輸入樣例:
輸出樣例:3 11111 22222 33333 44444 55555 66666 7 55555 44444 10000 88888 22222 11111 23333
5
10000 23333 44444 55555 88888
分析:
詳細程式碼:
#include <iostream> #include <vector> #include <algorithm> using namespace std; // 1065 單身狗(25)(25 分) 沒有完全通過 int main(void){ const int N = 100005; int n1,n2; int a[N]={0x00}; // input cin>>n1; for(int i=0;i<n1;++i){ // 00000 與 0 區別 int temp[2]; cin>>temp[0]>>temp[1]; ++temp[0]; ++temp[1]; a[temp[0]] = temp[1]; a[temp[1]] = temp[0]; } cin>>n2; for(int i=0;i<n2;++i){ int temp; cin>>temp; ++temp; if(a[temp] == 0){ a[temp] = -1;// 沒有對肯定輸出 }else{ a[temp] = 0; } } // int sum = 0; for(int i=0;i<N;++i){ if(a[i]>0 && !a[a[i]]){ a[a[i]]=-1; ++sum; // 求對數 } } // 輸出-1 cout<<(n2-sum)<<endl; int x = 0; for(int i=0;i<N;++i){ if(a[i]==-1){ if(++x == 1){ cout<<(i-1); }else{ cout<<" "<<(i-1); } } } return 0; }// jinzheng 2018.5.20 14:40
jinzheng