惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
博客园 - 【当耐特】
博客园_首页
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
V
Visual Studio Blog
F
Fortinet All Blogs
Martin Fowler
Martin Fowler

OhYee 博客

小鹏辅助驾驶测评|OhYee 博客 小鹏非支持手机开启自动解锁|OhYee 博客 使用函数计算实现 301 重定向|OhYee 博客 针对 HTML 内容使用 Ant Design 图片弹框|OhYee 博客 博客进程泄露及僵尸进程解决|OhYee 博客 蓝易云服务器体验|OhYee 博客 SSH 调起本地 VSCode|OhYee 博客 【2022 秋招内推】阿里云后端研发工程师|OhYee 博客 使用函数计算获取 IP 地址信息|OhYee 博客 正确获取客户端 IP/HTTP Header 也可能重复|OhYee 博客 评测 Oculus Quest2 及 BigScreen|OhYee 博客 NextJS 热重载保留状态|OhYee 博客 如何优雅地贴 gist 代码|OhYee 博客 Linux 精细化文件权限|OhYee 博客 VSCode 容器开发环境|OhYee 博客 Clash 的不兼容更新排查|OhYee 博客 Zeek 导出 PCAP|OhYee 博客 记一次 ssh 配置问题|OhYee 博客 Git Commit 规范化工具|OhYee 博客 谈谈《星之卡比-探索发现》|OhYee 博客 VSCode 快捷键绑定 Shell 命令|OhYee 博客 ASN.1 语法及 X.509 证书格式解析解析|OhYee 博客 腾讯企业邮箱忽略 MX 记录发信|OhYee 博客 Chrome/Edge 标签组插件|OhYee 博客 【应届内推】阿里云后端研发工程师|OhYee 博客 损坏的 Typecho 备份处理为 JSON|OhYee 博客 VS Code VIM 插件高效使用|OhYee 博客 SSH 正反向代理|OhYee 博客 Let's Encrypt 根证书过期引发的问题|OhYee 博客 OpenWRT 忽略内核依赖|OhYee 博客
HDU 6152.Friend-Graph|OhYee 博客
2017-08-19 · via OhYee 博客

这是一篇最后编辑于 8 年前 的文章,其内容可能与目前实际情况差异较大,请注意甄别

题目

{% fold 点击显/隐题目 %}

It is well known that small groups are not conducive of the development of a team. Therefore, there shouldn’t be any small groups in a good team. In a team with n members,if there are three or more members are not friends with each other or there are three or more members who are friends with each other. The team meeting the above conditions can be called a bad team.Otherwise,the team is a good team. A company is going to make an assessment of each team in this company. We have known the team with n members and all the friend relationship among these n individuals. Please judge whether it is a good team.

The first line of the input gives the number of test cases T; T test cases follow.(T<=15) The first line od each case should contain one integers n, representing the number of people of the team.($n \leq 3000$)

Then there are n-1 rows. The iith row should contain n-i numbers, in which number aija_{i j} represents the relationship between member i and member j+i. 0 means these two individuals are not friends. 1 means these two individuals are friends.

Please output ”Great Team!” if this team is a good team, otherwise please output “Bad Team!”.

1 4 1 1 0 0 0 1

Great Team!

{% endfold %}

题解

判断一个无向图中是否存在3个点没有直接联通,或者3个点直接互联通

可以转换为是否有点有三个及三个以上的边,或者有三个以上的点与他没有边
可以发现5个点按照正五边形连接是极端情况了,再多一个点,无论怎么连都无法满足要求
因此,当 n>=6 时必定是 Bad Team!
对于 n<6 的情况暴力求解即可

需要注意的是,数组开到 7*7 即可,开 1e5*1e5 会爆内存
另外如果 n>=6 ,读入仍然需要一个一个读,不能一次读一行(最后一行没有 \n)

代码

{% fold 点击显/隐代码 %}```cpp Friend-Graph https://github.com/OhYee/sourcecode/tree/master/ACM 代码备份
#include
using namespace std;

const int maxn = 10;
int n;
int r[maxn][maxn];

bool judge() {
for (int i = 1; i <= n; ++i) {
int friends = 0, notfriends = 0;
for (int j = 1; j <= n; ++j) {
if (i != j) {
if (r[i][j] == 1)
++friends;
else
++notfriends;
}
}
if (friends >= 3 || notfriends >= 3)
return false;
}
return true;
}

int main() {
int T;
scanf("%d", &T);
while (T--) {
scanf("%d", &n);
bool ok;

    if (n >= 6) {
        for (int i = 1; i < n; i++)
            scanf("%*[^\n]");
        ok = false;
    } else {
        for (int i = 1; i < n; i++)
            for (int j = 1; j <= n - i; ++j) {
                scanf("%d", &r[i][i + j]);
                r[i + j][i] = r[i][i + j];
            }
        ok = judge();
    }
    printf("%s\n", ok ? "Great Team!" : "Bad Team!");
}
return 0;

}

{% endfold %}