
uva
DATELOST
I'm curious.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
UVA-1395 最小瓶颈生成树
problem 求min(maxval-minval) maxval,minval 生成树边的最大最小值 sort边集,枚举最小值 因为最小生成树同时也是最小瓶颈生成树 每次做一遍kruskal更新答案即可 code: #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=1e5+7...原创 2020-01-28 17:30:54 · 292 阅读 · 0 评论 -
UVA-156 hash的运用
题目 Sample Input ladder came tape soon leader acme RIDE lone Dreis peat ScAlE orb eye Rides dealer NotE derail LaCeS drIed noel dire Disk mace Rob dries # Sample Output Disk NotE derail drIed eye ladde...原创 2019-01-23 14:51:43 · 146 阅读 · 0 评论 -
UVA-12879 FFT
题目 Problem Description: Do you like golf? I hate it. I hate golf so much that I decided to build the ultimate golf robot, a robot that will never miss a shot. I simply place it over the ball, choose t...原创 2019-05-20 12:39:02 · 275 阅读 · 0 评论 -
UVA-12304 测试圆相关模板
题目 kuangbin模板 #include<iostream> #include<string.h> #include<math.h> #include<stdio.h> #include<algorithm> #include<vector> using namespace std; const int N=1e5+7; ...原创 2019-09-11 21:30:11 · 177 阅读 · 0 评论