有 n 个活动即将举办,每个活动都有开始时间与活动的结束时间,第 i 个活动的开始时间是 starti ,第 i 个活动的结束时间是 endi ,举办某个活动就需要为该活动准备一个活动主持人。 一位活动主持人在同一时间只能参与一个活动。并且活动主持人需要全程参与活动,换句话说,一个主持人参与了第 i 个活动,那么该主持人在 (starti,endi) 这个时间段不能参与其他任何活动。请问一个只有一个主持人能否举办全部活动。 数据范围: ,
示例1
输入
[[0,10],[10,20],[20,30]]
输出
true
示例2
输入
[[0,10],[10,20],[15,30]]
输出
false
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型ArrayList
> * @return bool布尔型 */ public boolean hostschedule (ArrayList
> schedule) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型vector
> * @return bool布尔型 */ bool hostschedule(vector
>& schedule) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param schedule int整型二维数组 # @return bool布尔型 # class Solution: def hostschedule(self , schedule ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ public bool hostschedule (List
> schedule) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ function hostschedule( schedule ) { // write code here } module.exports = { hostschedule : hostschedule };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param schedule int整型二维数组 # @return bool布尔型 # class Solution: def hostschedule(self , schedule: List[List[int]]) -> bool: # write code here
package main //import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ func hostschedule( schedule [][]int ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @param scheduleRowLen int schedule数组行数 * @param scheduleColLen int* schedule数组列数 * @return bool布尔型 */ bool hostschedule(int** schedule, int scheduleRowLen, int* scheduleColLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param schedule int整型二维数组 # @return bool布尔型 # class Solution def hostschedule(schedule) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ def hostschedule(schedule: Array[Array[Int]]): Boolean = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ fun hostschedule(schedule: Array
): Boolean { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ public boolean hostschedule (int[][] schedule) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ export function hostschedule(schedule: number[][]): boolean { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ func hostschedule ( _ schedule: [[Int]]) -> Bool { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param schedule int整型二维数组 * @return bool布尔型 */ pub fn hostschedule(&self, schedule: Vec
>) -> bool { // write code here } }
[[0,10],[10,20],[20,30]]
true
[[0,10],[10,20],[15,30]]
false