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

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

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

  • 1:七月月赛

                        A题分析:直接贪心即可,注意要long long 1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "string" 5 using namesp

    https://www.u72.net/daima/nr737.html - 2024-10-15 11:55:02 - 代码库
  • 2:——P1144 最短路计数

                        https://www.luogu.org/problem/show?pid=1144#sub题目描述给出一个N个顶点M条边的无向无权图,顶点编号为1~N。问从顶点1开始,到其他每个点的最短路有几条

    https://www.u72.net/daima/ns671.html - 2024-10-19 09:18:02 - 代码库
  • 3:——P1046 陶陶摘苹果

                        https://www.luogu.org/problem/show?pid=1046题目描述陶陶家的院子里有一棵苹果树,每到秋天树上就会结出10个苹果。苹果成熟的时候,陶陶就会跑去摘苹果

    https://www.u72.net/daima/nvh09.html - 2024-10-28 10:48:39 - 代码库
  • 4:[快速幂][NOIP]洛1965 转圈游戏

                        题意梗概n 个小伙伴(编号从 0 到 n-1)围坐一圈玩游戏。按照顺时针方向给 n 个位置编号,从0 到 n-1。最初,第 0 号小伙伴在第 0 号位置,第 1 号小伙伴在第 1

    https://www.u72.net/daima/nu49v.html - 2024-10-25 17:50:39 - 代码库
  • 5:——P1540 机器翻译

                        https://www.luogu.org/problem/show?pid=1540#sub题目背景小晨的电脑上安装了一个机器翻译软件,他经常用这个软件来翻译英语文章。题目描述这个翻译软

    https://www.u72.net/daima/nsnm7.html - 2024-10-16 07:07:39 - 代码库
  • 6:——P1125 笨小猴

                        https://www.luogu.org/problem/show?pid=1125题目描述笨小猴的词汇量很小,所以每次做英语选择题的时候都很头疼。但是他找到了一种方法,经试验证明,用这

    https://www.u72.net/daima/nszkk.html - 2024-10-16 07:35:02 - 代码库
  • 7:——U10206 Cx的治疗

                        https://www.luogu.org/problem/show?pid=U10206题目背景「Cx的故事」众所周知,Cx是一个宇宙大犇。由于Cx在空中花园失足摔下,导致他那蕴含着无穷智慧的

    https://www.u72.net/daima/nvn30.html - 2024-10-27 23:14:39 - 代码库
  • 8:P1929 迷之阶梯

                        P1929 迷之阶梯题目描述在经过地球防卫小队的数学家连续多日的工作后,外星人发的密码终于得以破解。它 告诉我们在地球某一处的古老遗迹中,存在有对抗这

    https://www.u72.net/daima/nsdcd.html - 2024-10-16 17:15:02 - 代码库
  • 9:[洛 P3398] 仓鼠找sugar

                        题目描述小仓鼠的和他的基(mei)友(zi)sugar住在地下洞穴中,每个节点的编号为1~n。地下洞穴是一个树形结构。这一天小仓鼠打算从从他的卧室(a)到餐厅(b),而他的基

    https://www.u72.net/daima/nscz1.html - 2024-10-17 01:41:39 - 代码库
  • 10: P1548 棋盘问题

                        题目描述设有一个N*M方格的棋盘(l<=N<=100,1<=M<=100)(30%)求出该棋盘中包含有多少个正方形、多少个长方形(不包括正方形)。例如:当 N=2, M=3时: 正方形的个数

    https://www.u72.net/daima/nvfu8.html - 2024-10-29 10:15:02 - 代码库
  • 11:——P1548 棋盘问题

                        https://www.luogu.org/problem/show?pid=1548#sub题目描述设有一个N*M方格的棋盘(l<=N<=100,1<=M<=100)(30%)求出该棋盘中包含有多少个正方形、多少个长

    https://www.u72.net/daima/nvfvh.html - 2024-10-29 10:18:39 - 代码库
  • 12:【Splay】洛3372 【模板】线段树 1

                        Splay区间加,询问区间和。#include<cstdio>#include<iostream>#include<cstring>#include<algorithm>using namespace std;typedef long long ll

    https://www.u72.net/daima/nvfhe.html - 2024-10-29 08:28:02 - 代码库
  • 13:[洛3366]【模板】最小生成树

                        思路:Kruskal 1 #include<cstdio> 2 #include<utility> 3 #include<algorithm> 4 #define w first 5 #define a second.first 6 #define b second.secon

    https://www.u72.net/daima/nd1ds.html - 2024-09-30 18:30:02 - 代码库
  • 14:AC日记——方差 洛 P1471

                        方差 思路:  线段树; 代码:#include <bits/stdc++.h>using namespace std;#define maxn 100005struct TreeNodeType {    int l,r,mid,size;    double

    https://www.u72.net/daima/ndxvm.html - 2024-09-30 13:03:39 - 代码库
  • 15:AC日记——采花 洛 P2056

                        采花 思路:  莫队; 代码:#include <bits/stdc++.h>using namespace std;#define maxn 100005int bel[maxn];struct QueryType {    int l,r,id;    bool

    https://www.u72.net/daima/nd3hb.html - 2024-10-01 00:35:38 - 代码库
  • 16: 【P1941】飞扬的小鸟

                        P1941 飞扬的小鸟题目描述Flappy Bird 是一款风靡一时的休闲手机游戏。玩家需要不断控制点击手机屏幕的频率来调节小鸟的飞行高度,让小鸟顺利通过画面右

    https://www.u72.net/daima/nbz59.html - 2024-10-02 13:28:39 - 代码库
  • 17:图论 洛P2052 道路修建

                        P2052 道路修建题目描述在 W 星球上有 n 个国家。为了各自国家的经济发展,他们决定在各个国家 之间建设双向道路使得国家之间连通。但是每个国家的国

    https://www.u72.net/daima/nbd0x.html - 2024-10-02 22:12:02 - 代码库
  • 18:最小点对分治法(洛1257)

                        题目描述给定平面上n个点,找出其中的一对点的距离,使得在这n个点的所有点对中,该距离为所有点对中最小的输入样例#1:31 11 22 2输出样例#1:1.0000首先我

    https://www.u72.net/daima/nbshh.html - 2024-10-03 12:58:39 - 代码库
  • 19: 【P1026】统计单词个数

                        P1026 统计单词个数题目描述给出一个长度不超过200的由小写英文字母组成的字母串(约定;该字串以每行20个字母的方式输入,且保证每行一定为20个)。要求将

    https://www.u72.net/daima/nbfau.html - 2024-10-03 02:55:01 - 代码库
  • 20:——P2695 骑士的工作

                        https://www.luogu.org/problem/show?pid=2695题目背景你作为一个村的村长,保卫村庄是理所当然的了.今天,村庄里来了一只恶龙,他有n个头,恶龙到处杀人放火

    https://www.u72.net/daima/nceb8.html - 2024-10-12 09:50:02 - 代码库