古人云:秀恩愛,分得快。ios
互聯網上天天都有大量人發佈大量照片,咱們經過分析這些照片,能夠分析人與人之間的親密度。若是一張照片上出現了 K 我的,這些人兩兩間的親密度就被定義爲 1/K。任意兩我的若是同時出如今若干張照片裏,他們之間的親密度就是全部這些同框照片對應的親密度之和。下面給定一批照片,請你分析一對給定的情侶,看看他們分別有沒有親密度更高的異性朋友?git
輸入格式:數組
輸入在第一行給出 2 個正整數:N(不超過1000,爲總人數——簡單起見,咱們把全部人從 0 到 N-1 編號。爲了區分性別,咱們用編號前的負號表示女性)和 M(不超過1000,爲照片總數)。隨後 M 行,每行給出一張照片的信息,格式以下:函數
K P[1] ... P[K]
其中 K(<= 500)是該照片中出現的人數,P[1] ~ P[K] 就是這些人的編號。最後一行給出一對異性情侶的編號 A 和 B。同行數字以空格分隔。題目保證每一個人只有一個性別,而且不會在同一張照片裏出現屢次。spa
輸出格式:code
首先輸出「A PA」,其中 PA 是與 A 最親密的異性。若是 PA 不惟一,則按他們編號的絕對值遞增輸出;而後相似地輸出「B PB」。但若是 A 和 B 正是彼此親密度最高的一對,則只輸出他們的編號,不管是否還有其餘人並列。blog
輸入樣例 1:字符串
10 4 4 -1 2 -3 4 4 2 -3 -5 -6 3 2 4 -5 3 -6 0 2 -3 2
輸出樣例 1:get
-3 2 2 -5 2 -6
輸入樣例 2:it
4 4 4 -1 2 -3 0 2 0 -3 2 2 -3 2 -1 2 -3 2
輸出樣例 2:
該題很坑
1.要記錄全部輸入編號的性別,可能給出的ab並無出如今任何照片裏,因此輸入ab的時候也要記錄性別
2.字符串讀取,int沒法判別-0
3.只須要記錄和ab有關的,那麼其餘的親密度無需統計,先存照片,待ab輸入完了,再計算親密度
4.發生了段錯誤,是由於main函數裏的數組佔用太大,轉到全局就沒問題了。
代碼:-3 2
#include <iostream> #include <cstdio> #include <map> #include <cmath> #include <cstdlib> #include <algorithm> #include <vector> #define MAX 1001 #define inf 0x3f3f3f3f using namespace std; int n,m; int sex[1001],p[1001][501]; double affinity[2][1001]; int get(char *str) { int i = 0,g = 1; if(str[i] == '-')g = -1,i ++; int d = atoi(str + i); sex[d] = g; return d; } inline void print(int a,int b) { if(sex[a] == -1)putchar('-'); printf("%d ",a); if(sex[b] == -1)putchar('-'); printf("%d\n",b); } int ans[1001],ans1[1001],ant,ant1,k[501]; char str[6]; int main() { scanf("%d%d",&n,&m); int a,b; for(int i = 0;i < m;i ++) { scanf("%d",&k[i]); for(int j = 0;j < k[i];j ++) { scanf("%s",str); p[i][j] = get(str); } } scanf("%s",str); a = get(str); scanf("%s",str); b = get(str); for(int i = 0;i < m;i ++) {///開始統計 double d = 1.0 / k[i]; for(int j = 0;j < k[i];j ++) { if(p[i][j] != a && p[i][j] != b)continue; for(int l = 0;l < k[i];l ++) { if(sex[p[i][l]] * sex[p[i][j]] == -1) { affinity[p[i][j] == a ? 0 : 1][p[i][l]] += d; } } } } double ma = 0,mi = 0; for(int i = 0;i < n;i ++) {///比較最大 if(sex[i] * sex[a] == -1) { if(affinity[0][i] > ma) { ma = affinity[0][i]; ans[ant = 0] = i; } else if(affinity[0][i] == ma) { ans[++ ant] = i; } } if(sex[i] * sex[b] == -1) { if(affinity[1][i] > mi) { mi = affinity[1][i]; ans1[ant1 = 0] = i; } else if(affinity[1][i] == mi) { ans1[++ ant1] = i; } } } if(mi == ma && ma == affinity[0][b]) {///最大都是彼此 print(a,b); } else { for(int i = 0;i <= ant;i ++) { print(a,ans[i]); } for(int i = 0;i <= ant1;i ++) { print(b,ans1[i]); } } }
重溫:
代碼:
#include <iostream> #include <vector> using namespace std; int n,m,k; char s[10]; double mp[2][1001]; vector<int> photo[1000]; int g[1001]; int ans1[1000],ans2[1000],cnt1 = 0,cnt2 = 0; int deal(char *s) { int d; if(!isdigit(s[0])) d = atoi(s + 1); else d = atoi(s); if(s[0] == '-') g[d] = -1; else g[d] = 1; return d; } void print(int a,int b) { if(g[a] == -1) putchar('-'); printf("%d ",a); if(g[b] == -1) putchar('-'); printf("%d\n",b); } int main() { scanf("%d%d",&n,&m); for(int i = 0;i < m;i ++) { scanf("%d",&k); for(int j = 0;j < k;j ++) { scanf("%s",s); photo[i].push_back(deal(s)); } } int a,b; scanf("%s",s); a = deal(s); scanf("%s",s); b = deal(s); for(int i = 0;i < m;i ++) { double d = 1.0 / photo[i].size(); for(int j = 0;j < photo[i].size();j ++) { if(photo[i][j] == a || photo[i][j] == b) { int e = photo[i][j] == a ? 0 : 1; int gg = g[photo[i][j]]; for(int l = 0;l < photo[i].size();l ++) { if(g[photo[i][l]] * gg == -1) { mp[e][photo[i][l]] += d; } } } } } double max1 = 0,max2 = 0; for(int i = 0;i < n;i ++) { if(g[i] * g[a] == 1) continue; if(mp[0][i] > max1) { max1 = mp[0][i]; ans1[(cnt1 = 1) - 1] = i; } else if(mp[0][i] == max1) { ans1[cnt1 ++] = i; } } for(int i = 0;i < n;i ++) { if(g[i] * g[b] == 1) continue; if(mp[1][i] > max2) { max2 = mp[1][i]; ans2[(cnt2 = 1) - 1] = i; } else if(mp[1][i] == max2) { ans2[cnt2 ++] = i; } } if(max1 == max2 && max1 == mp[0][b]) { print(a,b); } else { for(int i = 0;i < cnt1;i ++) { print(a,ans1[i]); } for(int i = 0;i < cnt2;i ++) { print(b,ans2[i]); } } }