[题目描述] 某电商平台有 n 个仓库,编号从 1 到 n 。当购进某种货物的时候,商家会把货物分散的放在编号相邻的几个仓库中。我们暂时不考虑售出,你是否能知道,当所有货物购买完毕,存放货物种类最多的仓库编号为多少?输入格式: 在第一行中给出两个正整数 n , m ,分别代表仓库的数目和进货的次数。接下来 m 行,每行三个正整数 l , r , d 。编号在 l 和 r 之间的仓库收进编号为d的货
题目链接 只想做一个30分解法。考场上写dfs只能过15分,不思其解。系统未开放评测。 将复现方法粘贴如下,开放数据后再进行测试。 #include <iostream>#include <vector>#include <set>#include <algorithm>#include <map>using namespace std;int n, m, v;struct sto
解题思路: 暴力 优化前(代码没有错,但会超时): import java.util.*;public class Main {public static void main(String[] args) {long n = 2021041820210418L;long cnt = 0;for (long a = 1; a <= n; a++) {for (long b = 1; b <