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

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

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

  • 1:POJ 2656 Unhappy Jinjin(题)

                        【题意简述】:找到两数之和最大的那一天。【分析】:这个。。。。代码就贴在题目下啊。#include <stdio.h>int main(){        while(1) {                int i, n;               

    https://www.u72.net/daima/6kcn.html - 2024-07-24 01:32:01 - 代码库
  • 2:POJ 1118与2606 (题)

                        【题意简述】:两道题都是求有多少点在一条直线上。【分析】:暴力然后使用斜率相等进行求解,但要注意的是在求斜率时,避免使用除法,一律换位乘法运算,否则会RE

    https://www.u72.net/daima/6b9a.html - 2024-07-24 03:49:40 - 代码库
  • 3:POJ 2840 Big Clock(题)

                        【题意简述】:输入现在的时间,输出此时钟敲了多少次。【分析】:看好题目,给出映射关系就好。//220K 0Ms#include<iostream>using namespace std;int ma

    https://www.u72.net/daima/6c0x.html - 2024-07-24 05:21:20 - 代码库
  • 4:hdu1686 KMP

                        题意是给出文本串和模式串  玩模式串在文本串中出现多少次         把KMP稍稍改动下就ok了#include<stdio.h>#include<string.h>#include<iostream>

    https://www.u72.net/daima/m263.html - 2024-07-29 19:47:21 - 代码库
  • 5:UVALive 6527 Counting ones dfs(

                        题目链接:点击打开链接#include <cstdio>#include <vector>using namespace std;typedef long long ll;ll re;vector<int> p;void dfs(int dep

    https://www.u72.net/daima/naawv.html - 2024-07-30 05:00:19 - 代码库
  • 6:SDUT 1941-Friday the Thirteenth(

                        Friday the ThirteenthTime Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^题目描述 Is Friday the 13th really an unusual event?That is,

    https://www.u72.net/daima/9mvn.html - 2024-07-28 01:21:49 - 代码库
  • 7:poj1164 The Castle 搜索

                        http://poj.org/problem?id=1164The CastleTime Limit: 1000MS Memory Limit: 10000KTotal Submissions: 6382 Accepted: 3610Description     1   2

    https://www.u72.net/daima/98w7.html - 2024-07-27 22:41:46 - 代码库
  • 8:hdu2203 KMP

                        两种方法     第一种是纯粹KMP#include<stdio.h>#include<string.h>#include<iostream>using namespace std;char str1[200010],str2[100010];i

    https://www.u72.net/daima/eudk.html - 2024-07-28 12:09:46 - 代码库
  • 9:】noip模拟赛 锻炼计划

                        1. 锻炼计划(exercise.pas)题目身体是革命的本钱,OIers不要因为紧张的学习和整天在电脑前而忽视了健康问题。小x设计了自己的锻炼计划,但他不知道这个计

    https://www.u72.net/daima/769f.html - 2024-07-25 18:57:13 - 代码库
  • 10:HDU 4081-Parsing URL()

                        Parsing URLTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65768/65768 K (Java/Others)Total Submission(s): 1575    Accepted Submiss

    https://www.u72.net/daima/73x3.html - 2024-07-25 15:54:48 - 代码库
  • 11:hdu 5007 字符串

                        http://acm.hdu.edu.cn/showproblem.php?pid=5007纯属联系String的substr当substr截取的长度小于写的话string te;    int n;    te="Hellow";    c

    https://www.u72.net/daima/7150.html - 2024-07-25 14:13:25 - 代码库
  • 12:HDU 3564 Another LIS splay(

                        题意:给定一个空序列插入n个数(依次插入 1、2、3、4··n)下面n个数表示i插在哪个位置。每插入一个数后输出这个序列的lis然后。。。因为每次插入的数都是

    https://www.u72.net/daima/e4ff.html - 2024-07-28 19:25:02 - 代码库
  • 13:hdu1226 搜索

                        题目就不多说了    密码共为500位   完完全全的广搜       密码其中一个条件是n的倍数  所以最多只可能出现4999中状态     广搜到底         每一位1-

    https://www.u72.net/daima/88vv.html - 2024-07-26 21:29:37 - 代码库
  • 14:POJ 3438 Look and Say(题)

                        【题意简述】:就是说一串数字,现在让我们换一种方式去描述它,用该数字的个数和数字本身去重新描述这串数字。【分析】:简单模拟一下。//248k  641ms#inclu

    https://www.u72.net/daima/6552.html - 2024-07-24 16:46:10 - 代码库
  • 15:HDU-4438 Hunters 期望

                        最近在复习概率DP求期望,顺便做一下。分成第二个人选择老虎或者狼的情况。然后s1+=q*(p)*(p)*(x+y)+q*p*(1-p)*x+q*(1-p)*p*y;//老虎

    https://www.u72.net/daima/70zx.html - 2024-07-25 12:39:00 - 代码库
  • 16:codevs 过 骑马修栅栏

                         【问题描述】  农民John每年有很多栅栏要修理。他总是骑着马穿过每一个栅栏并修复它破损的地方。  John是一个与其他农民一样懒的人。他讨厌骑马,

    https://www.u72.net/daima/9uba.html - 2024-09-13 11:31:53 - 代码库
  • 17:CF 277.5 A.SwapSort

                        //STL教你做人系列#include<stdio.h>#include<iostream>#include<math.h>#include<algorithm>using namespace std;int n,a[3100];int main(){    cin>

    https://www.u72.net/daima/nhsca.html - 2024-08-02 21:55:11 - 代码库
  • 18:第K大素数(题)

                        第K大素数Time Limit: 1000ms   Memory limit: 32768K  有疑问?点这里^_^题目描述大家都知道素数是数学中很有意思的一类数,或许聪明的你已经知道了如何

    https://www.u72.net/daima/nkf4x.html - 2024-08-03 21:03:46 - 代码库
  • 19:C++与Java(题)

                        C++与JavaTime Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^题目描述按照Java的命名规范,由一个多个单词构成的变量名的命名规则为:

    https://www.u72.net/daima/nkf43.html - 2024-08-03 21:04:01 - 代码库
  • 20:HDU 5101 二分

                        给定一些集合,选择两个来自不同集合的数,加和大于k,问有多少种选择方案。ans=从所有数中选择的两个加和大于k的数的方案数-在同一个集合中选择的两个加和

    https://www.u72.net/daima/nz6nd.html - 2024-08-02 03:13:01 - 代码库