编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 830 篇代码解决方案

  • 1:POJ 2828 Buy Tickets(线段树)

                        Language:DefaultBuy TicketsTime Limit: 4000MS Memory Limit: 65536KTotal Submissions: 13847 Accepted: 6926DescriptionRailway tickets were dif

    https://www.u72.net/daima/e7vd.html - 2024-07-28 22:31:30 - 代码库
  • 2:ural 1019 Line Painting(线段树)

                        题目链接:ural 1019 Line Painting题目大意:一个0~1e9的区间,初始都是白的,现进行N次操作,每次将一段区间图上一中颜色。最后问说连续最长的白色区间。解题

    https://www.u72.net/daima/e77s.html - 2024-07-28 22:58:16 - 代码库
  • 3:HDU 3397 Sequence operation(线段树)

                        HDU 3397 Sequence operation题目链接题意:给定一个01序列,有5种操作0 a b [a.b]区间置为01 a b [a,b]区间置为12 a b [a,b]区间0变成1,1变成03 a b 查询[

    https://www.u72.net/daima/9an1.html - 2024-07-27 00:57:25 - 代码库
  • 4:codevs 1081 线段树练习 2

                        时间限制: 1 s 空间限制: 128000 KB 题目等级 : 大师 Master题解   题目描述 Description给你N个数,有两种操作1:给区间[a,b]的所有数都增加X2:询问第i

    https://www.u72.net/daima/9cdm.html - 2024-09-13 06:51:13 - 代码库
  • 5:poj2991 Crane(线段树)

                        DescriptionACM has bought a new crane (crane -- je?áb) . The crane consists of n segments of various lengths, connected by flexible joints

    https://www.u72.net/daima/9crz.html - 2024-09-13 07:01:36 - 代码库
  • 6:HDU 5700 区间交(线段树)

                        题目链接 区间交 1 #include <bits/stdc++.h> 2  3 using namespace std; 4  5 #define rep(i, a, b)    for (int i(a); i <= (b); ++i) 6 #de

    https://www.u72.net/daima/9s9r.html - 2024-09-13 11:01:21 - 代码库
  • 7:zoj 3511 Cake Robbery(线段树)

                        题目链接:zoj 3511 Cake Robbery题目大意:就是有一个N边形的蛋糕,切M刀,从中挑选一块边数最多的,保证没有两条边重叠。解题思路:有多少个顶点即为有多少条边,

    https://www.u72.net/daima/88c9.html - 2024-07-26 21:22:57 - 代码库
  • 8:hdu 4902 线段树+逆向模拟

                        http://acm.hdu.edu.cn/showproblem.php?pid=4902出n个数,然后对这n个数进行两种操作:如果是 1 l r x,则把 [l, r] 区间里面的每一个数都变为x;如果是 2

    https://www.u72.net/daima/eudf.html - 2024-07-28 12:09:58 - 代码库
  • 9:HDU 1754 I Hate It 线段

                        很多学校流行一种比较的习惯。老师们很喜欢询问,从某某到某某当中,分数最高的是多少。这让很多学生很反感。不管你喜不喜欢,现在需要你做的是,就是按照

    https://www.u72.net/daima/ebwa.html - 2024-09-14 21:45:05 - 代码库
  • 10:bzoj 2957: 楼房重建 线段

                        2957: 楼房重建Time Limit: 10 Sec  Memory Limit: 256 MB[Submit][Status][Discuss]Description  小A的楼房外有一大片施工工地,工地上有N栋待建的

    https://www.u72.net/daima/b56a.html - 2024-08-16 07:30:09 - 代码库
  • 11:HDU 5692 线段树+dfs序

                        SnacksTime Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1779    Accepted Submission(

    https://www.u72.net/daima/cnn5.html - 2024-08-17 09:48:26 - 代码库
  • 12:Codeforces 444C(线段树)

                        区间颜色不一致就更新到底,否则lazy标记#include<cstdio>#include<cstring>#include<cmath>#include<queue>using namespace std;#define lc l,m,i

    https://www.u72.net/daima/cv20.html - 2024-07-11 02:10:17 - 代码库
  • 13:HDU-1828-Picture(线段树)

                        Problem DescriptionA number of rectangular posters, photographs and other pictures of the same shape are pasted on a wall. Their sides are a

    https://www.u72.net/daima/cx7a.html - 2024-07-11 04:01:29 - 代码库
  • 14:acd - 1427 - Nice Sequence(线段树)

                        题意:一个由n个数组成的序列(序列元素的范围是[0, n]),求最长前缀 j ,使得在这个前缀 j 中对于任意的数 i1 < i2,都满足任意的 m <= j,i1 在前 m 个数里出现

    https://www.u72.net/daima/nardb.html - 2024-07-30 13:14:26 - 代码库
  • 15:ZOJ 3635 Cinema in Akiba(线段树)

                        Cinema in Akiba (CIA) is a small but very popular cinema in Akihabara. Every night the cinema is full of people. The layout of CIA is very i

    https://www.u72.net/daima/nardc.html - 2024-07-30 13:14:39 - 代码库
  • 16:BZOJ 4530 LCT/线段树合并

                          //By SiriusRen#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const int N=200050;int n,q,cnt,dfn[N],last[N],tre

    https://www.u72.net/daima/naf2m.html - 2024-09-18 10:47:03 - 代码库
  • 17:[HDU] 1754 I Hate It [线段树]

                        I Hate ItTime Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 40600    Accepted Submissi

    https://www.u72.net/daima/nnz1a.html - 2024-07-31 09:06:43 - 代码库
  • 18:[HDU] 1166 敌兵布阵 [线段树]

                        敌兵布阵Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 46267    Accepted Submissio

    https://www.u72.net/daima/nnz43.html - 2024-07-31 09:17:11 - 代码库
  • 19:POJ3067:Japan(线段树)

                        DescriptionJapan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N c

    https://www.u72.net/daima/nnhnh.html - 2024-09-19 21:19:07 - 代码库
  • 20:hdu 3333 Turing Tree(线段树)

                        题目链接:hdu 3333 Turing Tree题目大意:给定一个长度为N的序列。有M次查询,每次查询l。r之间元素的总和,同样元素仅仅算一次。解题思路:涨姿势了,线

    https://www.u72.net/daima/nnam0.html - 2024-09-19 18:04:53 - 代码库