1 Star 2 Fork 0

张先生/Calculated

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
1583. 统计不开心的朋友.js 880 Bytes
一键复制 编辑 原始数据 按行查看 历史
张先生 提交于 2021-08-15 21:20 . 20210815
var unhappyFriends = function(n, preferences, pairs) {
const order = new Array(n).fill(0).map(() => new Array(n).fill(0));
for (let i = 0; i < n; i++) {
for (let j = 0; j < n - 1; j++) {
order[i][preferences[i][j]] = j;
}
}
const match = new Array(n).fill(0);
for (const pair of pairs) {
let person0 = pair[0], person1 = pair[1];
match[person0] = person1;
match[person1] = person0;
}
let unhappyCount = 0;
for (let x = 0; x < n; x++) {
const y = match[x];
const index = order[x][y];
for (let i = 0; i < index; i++) {
const u = preferences[x][i];
const v = match[u];
if (order[u][x] < order[u][v]) {
unhappyCount++;
break;
}
}
}
return unhappyCount;
};
//不太会,看懂了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangdege/calculated.git
git@gitee.com:zhangdege/calculated.git
zhangdege
calculated
Calculated
master

搜索帮助