1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/探险营地 [0Zeoeg].md
2023-04-23 22:41:08 +08:00

50 lines
2.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

探险家小扣的行动轨迹,都将保存在记录仪中。`expeditions[i]` 表示小扣第 `i` 次探险记录,用一个字符串数组表示。其中的每个「营地」由大小写字母组成,通过子串 `->` 连接。
> 例:"Leet->code->Campsite",表示到访了 "Leet"、"code"、"Campsite" 三个营地。
`expeditions[0]` 包含了初始小扣已知的所有营地;对于之后的第 `i` 次探险(即 `expeditions[i]` 且 i > 0),如果记录中包含了之前均没出现的营地,则表示小扣 **新发现** 的营地。
请你找出小扣发现新营地最多且索引最小的那次探险,并返回对应的记录索引。如果所有探险记录都没有发现新的营地,返回 `-1`
**注意:**
- 大小写不同的营地视为不同的营地;
- 营地的名称长度均大于 `0`
**示例 1**
>输入:`expeditions = ["leet->code","leet->code->Campsite->Leet","leet->code->leet->courier"]`
>
>输出:`1`
>
>解释:
>初始已知的所有营地为 "leet" 和 "code"
>第 1 次,到访了 "leet"、"code"、"Campsite"、"Leet",新发现营地 2 处:"Campsite"、"Leet"
>第 2 次,到访了 "leet"、"code"、"courier",新发现营地 1 处:"courier"
>第 1 次探险发现的新营地数量最多,因此返回 `1`
**示例 2**
>输入:`expeditions = ["Alice->Dex","","Dex"]`
>
>输出:`-1`
>
>解释:
>初始已知的所有营地为 "Alice" 和 "Dex"
>第 1 次,未到访任何营地;
>第 2 次,到访了 "Dex",未新发现营地;
>因为两次探险均未发现新的营地,返回 `-1`
**示例 3**
>输入:`expeditions = ["","Gryffindor->Slytherin->Gryffindor","Hogwarts->Hufflepuff->Ravenclaw"]`
>
>输出:`2`
>
>解释:
>初始未发现任何营地;
>第 1 次,到访 "Gryffindor"、"Slytherin" 营地,其中重复到访 "Gryffindor" 两次,
>因此新发现营地为 2 处:"Gryffindor"、"Slytherin"
>第 2 次,到访 "Hogwarts"、"Hufflepuff"、"Ravenclaw" 营地;
>新发现营地 3 处:"Hogwarts"、"Hufflepuff"、"Ravenclaw"
>第 2 次探险发现的新营地数量最多,因此返回 `2`
**提示:**
- `1 <= expeditions.length <= 1000`
- `0 <= expeditions[i].length <= 1000`
- 探险记录中只包含大小写字母和子串"->"