11038 many how uva

Robotruck UVA - 1169

有n个垃圾,第i个垃圾的坐标为(xi,yi),重量为wi。 有一个机器人,要按照编号从小到大的顺序捡起所有垃圾并扔进垃圾桶(垃圾桶在原点(0,0))。 机器人可以捡起几个垃圾以后一起扔掉,但任何时候其手中的垃圾总重量不能超过最大载重C。两点间的行走距离为曼哈顿距离(即横坐标之差的绝对值加上纵坐标之差 ......
Robotruck 1169 UVA

Add Again UVA - 11076

define S ,it is sum of all possible permutationsof a given set of digits. For example, if the digits are <1 2 3>, then six possible permutations are<1 ......
11076 Again Add UVA

The Super Powers UVA - 11752

求1~2^64 区间里, 有多少合法数X 合法数: X= a^b ,至少存在2个不同的a #include <iostream> #include <algorithm> #include <vector> using namespace std; const int N =65536+3; int ......
Powers Super 11752 The UVA

How to execute a shell script in the .profiles file All In One

How to execute a shell script in the .profiles file All In One ......
profiles execute script shell file

LCM Cardinality UVA - 10892

给出n, 求有多少对(a,b) (a<b), 满足 LCM(a,b) =n 暴力求所有因数 #include <iostream> #include <algorithm> #include <vector> using namespace std; const int N =1e4+20; #de ......
Cardinality 10892 LCM UVA

Again Prime? No Time. UVA - 10780

给定 m,n ,求最大的 k 使得 m^k∣n! 分解质因数 #include <iostream> #include <cstring> #include <sstream> using namespace std; const int N =1e4+20; const int inf =1e9 ......
Again 10780 Prime Time UVA

UVA10943 How do you add?

两个数 n,m,求 用 m 个 [0,n] 的整数相加使其和为 n 的方案数。 #include <iostream> #include <cstring> #include <sstream> using namespace std; const int N =102; const int mod ......
10943 UVA How add you

UVA11889

lcm(a,b)=c 给a,c ,求最小的b #include <iostream> #include <cstring> #include <sstream> using namespace std; #define int long long int a,b,c; int cnt[100]; i ......
11889 UVA

How to use Linux shell command filter the IP address All In One

How to use Linux shell command filter the IP address All In One 如何使用 Linux shell 命令过滤 IP 地址 ......
command address filter Linux shell

Uva--679 Dropping Balls(二叉树的编号)

记录 23:28 2023-4-16 https://onlinejudge.org/external/6/679.pdf reference:《算法竞赛入门经典第二版》例题6-6 二叉树,这里是完全二叉树,使用模拟的方式应该会TLE(虽然我用模拟的方式也TLE了,但不是这个原因,下面会提到原因) ......
Dropping Balls Uva 679

UVA1392 DNA Regions

https://www.luogu.com.cn/problem/UVA1392 给定两个长度为 n 的字符串 A 和 B,满足 A 和 B 都只由大写字母 A、C、G、T 组成。 求一个长度最长的闭区间 [L,R],满足对于 i∈[L,R] , 有不超过 p% 的 i 满足 Ai≠Bi ......
Regions 1392 UVA DNA

Unique Snowflakes uva11572

找最长的,没有相同元素的区间 双指针 #include <iostream> #include <set> using namespace std; const int N=1e6+2; int n,a[N]; void solve(){ int x=1,y=1,ans=0; set<int> st ......
Snowflakes Unique 11572 uva

UVA1451

二分平均值x,每个数减去x , 找区间 S[ r ]- S[l]>=0 ,r-l>=m #include <iostream> #include <vector> #include <algorithm> using namespace std; const int N=1e5+5; #define ......
1451 UVA

How to use the Raspberry Pi to study the Linux kernel source code All In One

How to use the Raspberry Pi to study the Linux kernel source code All In One 如何利用树莓派来研究 Linux 内核源码 All In One 在 Linux 系统中,一切皆文件! ......
the Raspberry kernel source Linux

Sumsets UVA - 10125

一个集合中需要找到 a,b,c,d ,使得 a+b+c=d 枚举a,b ,计算a+b,存在map里 再枚举d,c ,计算d-c 是否 存在 d-c==a+b #include <iostream> #include <map> #include <algorithm> #include <vecto ......
Sumsets 10125 UVA

Maximum sum on a torus UVA - 10827

求 n×nn×n 的环状方阵上的最大子矩阵和。 构造 2*n *( 2*n) 的正方形 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=300; int a[N] ......
Maximum 10827 torus sum UVA

Udhcpc.user script documentation and how to hotplug for DHCP events

Udhcpc.user script documentation and how to hotplug for DHCP events https://forum.openwrt.org/t/udhcpc-user-script-documentation-and-how-to-hotplug-fo ......
documentation hotplug Udhcpc script events

how to use cURL with a variable in the URL string All In One

how to use cURL with a variable in the URL string All In One 如何在 cURL 的 URL 字符串中使用变量 系统变量 环境变量 shell 变量 ......
variable string cURL with how

How to use SSH to access the Raspberry Pi without know the Wi-Fi IP address All In One

How to use SSH to access the Raspberry Pi without know the Wi-Fi IP address All In One 如何在不知道 Wi-Fi IP 地址的情况下使用 SSH 访问树莓派 没有显示器,不知道树莓派 IP 地址的情况下,如何通过 ... ......
Raspberry the address without access

UVA1382 Distant Galaxy

给出平面上的n个点,找一个矩形,使得边界上包含的点尽可能地多。 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=200; struct T{ int x,y ; ......
Distant Galaxy 1382 UVA

UVA1330 City Game

利用网格图上空白的方格上建一个矩形的建筑。问地区中建筑物的最大面积 递推(dp) #include <iostream> #include <cstring> #include <sstream> using namespace std; const int N=1e3+2; char a[N][N ......
1330 City Game UVA

kuangbin专题一 简单搜索 起火迷宫(UVA-11624)

#Fire! ####Description Joe works in a maze. Unfortunately, portions of the maze have caught on fire, and the owner of the maze neglected to create a f ......
迷宫 kuangbin 专题 11624 UVA

UVA1650 数字串 Number String

对于任意一个只含数字1~n的有序数字串{a1,a2,……,an},比较数字串中所有相邻数字的大小,后者大于前者的用I表示,否则用D表示。例如,数字串{3,1,2,7,4,6,5},{2,1,3,7,4,6,5}和{3,1,2,7,5,6,4}就表示为'DIIDID'。"?"则表示两数的关系未知。例如 ......
数字 Number String 1650 UVA

How to use command line find all users on Linux All In One

How to use command line find all users on Linux All In One Linux 系统中一切皆文件, 就像 js 中一切皆对象一样 /etc/passwd ......
command Linux users line find

how to create one command line configuration tool with shell language on Linux All In One

how to create one command line configuration tool with shell language on Linux All In One 如何在 Linux 上用 shell 语言创建一个命令行配置工具 raspi-config ......
configuration language command create Linux

Party at Hali-Bula UVA - 1220

多判断一个唯一性 only[ x] [0/1] #include <iostream> #include <cstring> #include <vector> #include <map> #include <algorithm> using namespace std; const int N= ......
Hali-Bula Party Hali Bula 1220

Another Crisis UVA - 12186

#include <iostream> #include <cstring> #include <vector> #include <algorithm> using namespace std; const int N=1e5+3; int f[N],n,K; vector<int> g[N]; ......
Another Crisis 12186 UVA

Alibaba UVA - 1632

在一条直线的同一个方向上有 nn 件珠宝,已知每件珠宝的位置,并且第 ii 件珠宝在 Ti时刻消失, 问将所有的珠宝收集起来最小耗时? 搜集不耗时,移动需要耗时 类似区间dp f[i ][ j ] [2] #pragma GCC optimize(2) #include <iostream> usi ......
Alibaba 1632 UVA

uva 11082 A Plug for UNIX

#include <iostream> #include <vector> #include <map> #include <queue> #include <cstring> using namespace std; const int N=1e4+2,M=5e5; int n1,n2,n3,le ......
11082 Plug UNIX uva for

How to Calculate the size of archive log files each day

Calculate the size of archive log files each day SQL> SELECT TRUNC(COMPLETION_TIME) ARCHIVED_DATE, SUM(BLOCKS * BLOCK_SIZE) / 1024 / 1024 SIZE_IN_MB F ......
Calculate archive files size each