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

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

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

  • 1:poj 2823 Sliding Window 单调队列或线段

                        题目链接:http://poj.org/problem?id=2823Sliding WindowTime Limit: 12000MS Memory Limit: 65536KTotal Submissions: 38315 Accepted: 11350Case Ti

    https://www.u72.net/daima/vcuh.html - 2024-07-15 00:58:30 - 代码库
  • 2:hdu4902Nice boat线段树区间更新

                        #include<iostream>#include<cmath>using namespace std;int n;bool flag;struct node{        int mx,l,r,m,mn;}tree[400000];void create(int l,i

    https://www.u72.net/daima/vwf0.html - 2024-07-15 05:22:49 - 代码库
  • 3:HDU 4902 Nice boat 多校4 线段

                        给定n个数第一个操作和普通,区间覆盖性的,把l-r区间的所有值改成固定的val第二个操作是重点,输入l r x 把l-r区间的所有大于x的数,变成gcd(a[i],x) a[i]即

    https://www.u72.net/daima/vv0h.html - 2024-07-15 04:47:39 - 代码库
  • 4:HDU 4893 线段树的 点更新 区间求和

                        Wow! Such Sequence!Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2067    Accepte

    https://www.u72.net/daima/vf46.html - 2024-07-15 00:23:04 - 代码库
  • 5:HDU 1698 Just a Hook (线段树延迟标记(lazy))

                        题意:有n个数初始值都为1,m个操作a,b,c,表示把区间[a,b]变为c,求最后n个数的和。经典区间更新求和问题,需要用到延迟标记(或者说是懒惰标记),简单老说就

    https://www.u72.net/daima/vhws.html - 2024-07-14 20:38:18 - 代码库
  • 6:Hdu1698Just a Hook线段树区间更新

                          区间更新基础。。不说了,也是照着notonlysuccess的博客撸的。#include <cstdio>#include <cstring>#include <algorithm>#include <climits>#includ

    https://www.u72.net/daima/1k6m.html - 2024-07-18 20:49:10 - 代码库
  • 7:Poj2528Mayor's posters线段

                          先贴,明天再补。#include <cstdio>#include <cstring>#include <algorithm>#include <climits>#include <string>#include <iostream>#include <map

    https://www.u72.net/daima/1k8r.html - 2024-07-18 20:51:34 - 代码库
  • 8:CodeForces 91B Queue (线段树单点操作)

                        DescriptionThere are n walruses standing in a queue in an airport. They are numbered starting from the queue‘s tail: the1-st walrus stands

    https://www.u72.net/daima/3x9m.html - 2024-07-21 08:41:56 - 代码库
  • 9:几何画板中去除画出的线段的教程

                        在几何画板中作图和在黑板和纸上画图不一样,没有直接可以使用的橡皮擦或者黑板擦来将画的图擦除,但是在几何画板中如果画错了图或者不需要某个图形,也是可

    https://www.u72.net/daima/x9xu.html - 2024-08-28 01:42:50 - 代码库
  • 10:HDU 1255 覆盖的面积(线段树+扫描线)

                        题目地址:HDU 1255这题跟面积并的方法很像,只不过需要再加一个变量。刚开始我以为直接用那个变量就行,只不过判断是否大于0改成判断是否大于1。但是后来发

    https://www.u72.net/daima/xr7r.html - 2024-07-17 02:06:32 - 代码库
  • 11:hnu12884 Area Coverage 矩形分割 or 线段

                        题意:给你n个二维平面上的矩形,可以两两覆盖,问最后覆盖的总面积为多少解题思路:1)矩形状分割,可以知道,每多出一个矩形就和前面所有产生的矩形判断,看是有相交

    https://www.u72.net/daima/xreu.html - 2024-07-17 02:12:39 - 代码库
  • 12:杭电 1698 Just a Hook(线段树区间修改)

                        http://acm.hdu.edu.cn/showproblem.php?pid=1698Just a HookTime Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

    https://www.u72.net/daima/xsh1.html - 2024-07-17 02:22:09 - 代码库
  • 13:Mayor's posters(线段树 + 离散化)

                        DescriptionThe citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electo

    https://www.u72.net/daima/x9h5.html - 2024-07-17 14:20:24 - 代码库
  • 14:HDU 4902 Nice boat(数据结构-线段树)

                        Nice boatProblem DescriptionThere is an old country and the king fell in love with a devil. The devil always asks the king to do some crazy

    https://www.u72.net/daima/0h3w.html - 2024-07-17 20:08:17 - 代码库
  • 15:Embassy Queue【线段树、贪心】

                        题目大意:每个人要办理签证都必须到大使馆中办理三种手续,而且这三种手续办的顺序是固定的。给出办理每种手续的窗口有多少个,办理每个手续花费的时间,有多

    https://www.u72.net/daima/26er.html - 2024-07-20 13:58:59 - 代码库
  • 16:Uva 12299 带循环移动的RMQ(线段树)

                        题目链接:https://vjudge.net/contest/147973#problem/C题意:传统的RMQ是一个不变的数组a求区间最值。现在要循环移动(往前移动)。分析:求区间问题,很容易想

    https://www.u72.net/daima/25ek.html - 2024-09-01 22:26:55 - 代码库
  • 17:CF380C Sereja and Brackets [想法+线段树]

                        题意:给出一串括号给出一些询问,问某个区间[l,r]内的能合法匹配的括号数有多少个分析:我们可以实现处理两个数组sum[i] 1....i中已经能匹配的右括号的数

    https://www.u72.net/daima/22ew.html - 2024-07-20 10:16:54 - 代码库
  • 18:hdu 4267 A Simple Problem with Integers(树形结构-线段树)

                        A Simple Problem with IntegersTime Limit: 5000/1500 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3708

    https://www.u72.net/daima/2w1u.html - 2024-07-20 06:16:13 - 代码库
  • 19:ZOJ-3632 Watermelon Full of Water 线段树+DP

                        暑假生活开始了,夏日炎炎,集训队想要每天都吃到西瓜。已知n天,每天商店提供一个西瓜,不同的西瓜可以供集训队吃不同的天数,也有不同的价格,问集训队想

    https://www.u72.net/daima/2uv8.html - 2024-07-20 04:17:56 - 代码库
  • 20:线段树区间合并】HDU1540-Tunnel Warfare

                        一、题目DescriptionDuring the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China

    https://www.u72.net/daima/0mhc.html - 2024-08-29 20:52:31 - 代码库