1. 评奖规则- 四道月赛题目所有參与,并成功通过三道及以上比赛指定题目;- 线上题目參与总数超过40,且通过率高于50%;排名规则依照通过比赛题
https://www.u72.net/daima/2ba8.html - 2024-07-19 23:22:36 - 代码库题目链接:http://poj.org/problem?id=3669题意:这个同学发现流星雨要来了,会对地球造成伤害于是决定逃跑。N颗流星会不定时降落在坐标轴第一象限300*30
https://www.u72.net/daima/3h8h.html - 2024-09-02 13:24:34 - 代码库【Summarize】 1.注意对图是否连通的判定 2.灵活运用边权取负的技巧 AOJ 0189:Convenient Location/* 给出一张无向图,现在求一个点,使得这个点
https://www.u72.net/daima/u45u.html - 2024-08-22 15:43:52 - 代码库题目:POJ - 3262这道题,需要好好总结。原来的思路是,依次计算出送走奶牛1~N会毁掉的花的数量,找出最小的,送走这头牛。然后又在剩下的奶牛中找可以使毁掉
https://www.u72.net/daima/3ed4.html - 2024-09-03 21:56:33 - 代码库继上一篇得到的初步数据,我们基本上已经得到了用于分类的数据了。接下来可以考虑建模了,建模可以有多种方法那么评估模型的最简单粗暴的方法就是匹配准确
https://www.u72.net/daima/5ffz.html - 2024-09-06 09:33:00 - 代码库输入一个字符串。求出当中最长的回文子串。子串的含义是:在原串中连续出现的字符串片段。回文的含义是:正着看和倒着看同样。如abba和yyxyy。在推断时,
https://www.u72.net/daima/mu8u.html - 2024-09-16 23:32:57 - 代码库POJ 2836 Rectangular Covering铺地板:坐标平面上有n各点,用任意大小(非零)的地板砖覆盖它们,求最省的地板砖总面积。3.4熟练掌握动态规划状态压缩DP先预
https://www.u72.net/daima/8mrk.html - 2024-07-27 00:16:37 - 代码库POJ 3411 Paid Roads开路:N个城市间有m条单向路,分别从a到b,可以在c处交P路费,也可以直接交R路费。那么问题来了,你的挖掘机怎么开最省钱?3.4熟练掌握动态
https://www.u72.net/daima/mcaw.html - 2024-07-29 10:20:18 - 代码库POJ 3420 Quad Tiling贴瓷砖:4*N的地板上用2*1的瓷砖铺满,求所有方案数对M求余。3.4熟练掌握动态规划矩阵的幂久违地上了节课,太无聊,只好刷一题。假设S[
https://www.u72.net/daima/nk1f7.html - 2024-08-04 04:57:34 - 代码库The sinking of the RMS Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the Titanic
https://www.u72.net/daima/nk7dw.html - 2024-08-04 10:41:02 - 代码库有n盏灯,编号为1~n,第1个人把所有灯打开,第2个人按下所有编号为2的倍数的开关(这些灯将被关掉),第3个人按下所有编号为3的倍数的开关(其中关掉的灯被打
https://www.u72.net/daima/naxzf.html - 2024-07-30 18:02:20 - 代码库习题 2-10 用1,2,3,....,9组成3个三位数abc,def和ghi,每个数字恰好使用一次,要求abc:def:ghi=1:2:3。输出所有解。#include <stdio.h>#include <st
https://www.u72.net/daima/naxzr.html - 2024-07-30 18:02:29 - 代码库题意:有n根棍子,棍子i的长度为ai,想要从中选出3根棍子组成周长尽可能长的三角形,请输出最大的周长,若无法组成三角形则输出0。 解法:将输入的棍子长度进行
https://www.u72.net/daima/ndc55.html - 2024-09-29 18:55:39 - 代码库ASTEED 这个字符串可以任意变换位子找到第n个 深搜 遍历所有可能字符串 然后放到set维护 第n个就可以了#include<stdio.h>#include<algorithm>
https://www.u72.net/daima/nd6vd.html - 2024-10-01 11:14:39 - 代码库题目大意:有k个数组,每个数组选取一个数,组成k^k个数。在这k^k个数中选择最小的前k个数解题思路:1、如果只有k个数组,那么最后得到的最小的前k个数应该可以
https://www.u72.net/daima/ns54z.html - 2024-10-19 02:26:02 - 代码库程序 3-1#include<stdio.h>#define MAXN 100 + 10int a[MAXN];int main(){ int i, x, n = 0; while(scanf("%d, &x") == 1) a[n++
https://www.u72.net/daima/nsxhx.html - 2024-08-10 12:38:38 - 代码库程序1-41 #include<stdio.h>2 #include<math.h>3 int main()4 {5 int a,b;6 scanf("%d%d",&a,&b);7 printf("%d\n",a+b);8 8 }程序1-5
https://www.u72.net/daima/nsauh.html - 2024-08-09 23:38:35 - 代码库例题1-2程序1-61 #include<stdio.h>2 #include<math.h>3 int main()4 {5 int n;6 scanf("%d",&n);7 printf("%d%d%d",n%10,n/10%10,n/100)
https://www.u72.net/daima/nsa00.html - 2024-08-09 23:47:37 - 代码库代码1-11 1 #include<stdio.h> 2 int main() 3 { 4 int a,b,n,m; 5 scanf("%d%d",&n,&m); 6 a=(4*n-m)/2; 7 b=n-a; 8 if(n%2==1|
https://www.u72.net/daima/nsa3e.html - 2024-08-09 23:54:17 - 代码库习题 2-10 用1,2,3。....,9组成3个三位数abc。def和ghi,每一个数字恰好使用一次,要求abc:def:ghi=1:2:3。输出全部解。#include <stdio.h>#i
https://www.u72.net/daima/nskfz.html - 2024-10-16 13:58:39 - 代码库