first commit
This commit is contained in:
commit
31bda4481f
37 changed files with 4645 additions and 0 deletions
28
2024/one/one-2.lua
Normal file
28
2024/one/one-2.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
a = {}
|
||||
b = {}
|
||||
s = {}
|
||||
n = 1000
|
||||
r = 0
|
||||
|
||||
for i=1,n*2 do
|
||||
if i % 2 == 1 then
|
||||
table.insert(a, io.read("*n"))
|
||||
else
|
||||
table.insert(b, io.read("*n"))
|
||||
end
|
||||
end
|
||||
|
||||
table.sort(a)
|
||||
table.sort(b)
|
||||
|
||||
for i=1, n do
|
||||
ap = 0
|
||||
for j=1, n do
|
||||
if a[i] == b[j] then
|
||||
ap = ap + 1
|
||||
end
|
||||
end
|
||||
r = r + ap*a[i]
|
||||
end
|
||||
|
||||
print(r)
|
7
2024/one/one.example
Normal file
7
2024/one/one.example
Normal file
|
@ -0,0 +1,7 @@
|
|||
3 4
|
||||
4 3
|
||||
2 5
|
||||
1 3
|
||||
3 9
|
||||
3 3
|
||||
|
1000
2024/one/one.input
Normal file
1000
2024/one/one.input
Normal file
File diff suppressed because it is too large
Load diff
21
2024/one/one.lua
Normal file
21
2024/one/one.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
a = {}
|
||||
b = {}
|
||||
s = 0
|
||||
n = 6
|
||||
|
||||
for i=1,n*2 do
|
||||
if i % 2 == 1 then
|
||||
table.insert(a, io.read("*n"))
|
||||
else
|
||||
table.insert(b, io.read("*n"))
|
||||
end
|
||||
end
|
||||
|
||||
table.sort(a)
|
||||
table.sort(b)
|
||||
|
||||
for i=1, n do
|
||||
s = s + math.abs(a[i] - b[i])
|
||||
end
|
||||
|
||||
print(s)
|
Loading…
Add table
Add a link
Reference in a new issue