- 921. Minimum Add to Make Parentheses Valid 使括号有效的最少添加
- 915. Partition Array into Disjoint Intervals 分割数组
- 932. Beautiful Array 漂亮数组
- 940. Distinct Subsequences II 不同的子序列 II
题目地址:https://leetcode.com/problems/flower-planting-with-no-adjacent/
Youhave N
gardens, labelled 1
to N
. In each garden, you want to plant one of 4 types of flowers.
paths[i] = [x, y]
describes the existence of a bidirectional path from garden x
to garden y
.
Also, there is no garden that has more than 3 paths coming into or leaving it.
Your task is to choose a flower type for each garden such that, for any two gardens connected by a path, they have different types of flowers.
Return any such a choice as an array answer, where answer[i]
is the type of flower planted in the (i+1)-th
garden. The flower types are denoted 1, 2, 3, or 4
. It is guaranteed an answer exists.
Example 1:
Input: N = 3, paths = [[1,2],[2,3],[3,1]]
Output: [1,2,3]
Example 2:
Input: N = 4, paths = [[1,2],[3,4]]
Output: [1,2,1,2]
Example 3:
Input: N = 4, paths = [[1,2],[2,3],[3,4],[4,1],[1,3],[2,4]]
Output: [1,2,3,4]
Note:
1、 1<=N<=10000
;
2、 0<=paths.size<=20000
;
3、 Nogardenhas4ormorepathscomingintoorleavingit.;
4、 Itisguaranteedananswerexists.;
每一个顶点都最多只有3条相邻的边,现在要给每个顶点编号1~4,要求相邻的顶点不能是相同的数字。给出其中任意一种方案。
N表示顶点数,paths表示这两个顶点(编号从1开始)之间有边。
这个题目背景虽然是花园,但是我相信大家应该都明白了,其实说的是四色定理open in new window。
既然是个图论的题目,那么就按照图的方法来解。先构建无向图,对于每个顶点检查其所有相邻顶点的编号,这个顶点用一个没有用过的编号,依次类推。题目也已经说了,解一定存在。
由于每个顶点最多只有三条边,所以时间复杂度是O(N)。
Python代码如下:
class Solution(object):
def gardenNoAdj(self, N, paths):
"""
:type N: int
:type paths: List[List[int]]
:rtype: List[int]
"""
res = [0] * N
graph = [[] for i in range(N)]
for path in paths:
graph[path[0] - 1].append(path[1] - 1)
graph[path[1] - 1].append(path[0] - 1)
for i in range(N):
neighbor_colors = []
for neighbor in graph[i]:
neighbor_colors.append(res[neighbor])
for color in range(1, 5):
if color in neighbor_colors:
continue
res[i] = color
break
return res
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
C++代码如下:
class Solution {
public:
vector<int> gardenNoAdj(int N, vector<vector<int>>& paths) {
vector<int> res(N, 0);
vector<vector<int>> graph(N);
for (auto& path : paths) {
graph[path[0] - 1].push_back(path[1] - 1);
graph[path[1] - 1].push_back(path[0] - 1);
}
for (int i = 0; i < N; ++i) {
unordered_set<int> neighbor_colors;
for (int neighbor : graph[i]) {
neighbor_colors.insert(res[neighbor]);
}
for (int color = 1; color < 5; ++color) {
if (neighbor_colors.count(color))
continue;
res[i] = color;
break;
}
}
return res;
}
};
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
参考资料: https://leetcode.com/problems/flower-planting-with-no-adjacent/discuss/308003/Python-Clear-solution-without-one-line-code
2022
DDKK.COM 弟弟快看-教程,程序员编程资料站,版权归原作者所有
本文经作者:负雪明烛 授权发布,任何组织或个人未经作者授权不得转发
我在我的 Controller 中添加了一个名为移植的自定义操作。我只是想呈现一个下拉表单以根据“tray_id”选择要定位的位置 我的路线是这样的: resources :plants do
题目地址:https://leetcode.com/problems/flower-planting-with-no-adjacent/ 题目描述 Youhave N gardens, label
我有一个用工厂模拟制作的离散事件模拟模型,仅使用充满变量、方法和表格的网络,但不使用任何 Material 流对象。 我的任务是将这个模型转换成Java代码。 我首先使用 ANTLRv4 为 SimT
我有以下问题, 假设我有以下单元格(非常简化):CBA 4.5 01/22/2019 ,我想用VBA种一个BDP()在相邻单元格中运行,以找出 ISIN 是什么。如果没有 excel,我会使用 =BD
我们有市场数据处理程序,可以向 KDB Ticker Plant 发布报价。为此,我们使用 exxeleron q java 库。不幸的是,延迟非常高:当我们尝试插入一批记录时,延迟会达到数百毫秒。您
我的任务是为 C/C++ 类创建一个简单的扫雷克隆。它需要使用 10x10 字符 2D 数组作为雷区。 我需要在 field 上随机放置 5 个地雷。空白处应使用空格(' ')填充,而有地雷的位置应使
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 5 年前。 Improve t
Problem Statement There are N plants in a garden. Each of these plants has been added with some amou
这个相当简单的 SQL 查询在从 LINQ 尝试时被证明是非常令人困惑的。 我有一个 SQL 表 Plant带列ZoneMin . 我想找到列中值的最小值和最大值。 T-SQL 中的答案非常简单: S
这个相当简单的 SQL 查询被证明在从 LINQ 尝试时非常令人困惑。 我有一个包含 ZoneMin 列的 SQL 表 Plant。 我想找到列中值的最小值和最大值。 T-SQL 中的答案非常简单:
我正在尝试在处理 javascript 时实现一个分形工厂(最高级别 - 6)。即使满足基本条件,我也会收到“超出最大调用堆栈大小”错误。 代码如下:第一个函数自定义画线根据长度、 Angular 和
我是一名优秀的程序员,十分优秀!