summaryrefslogtreecommitdiff
path: root/kattis-open/almostunionfind/geninput.py
diff options
context:
space:
mode:
authormathiasmagnusson <mathiasmagnussons@gmail.com>2022-12-09 18:00:41 +0100
committermathiasmagnusson <mathiasmagnussons@gmail.com>2022-12-09 18:00:41 +0100
commita1eb38bebe6ce1668c3f96489506c3b05b9fe5cb (patch)
treecccf0fd4763dba123efab7c896292dc18d1eb458 /kattis-open/almostunionfind/geninput.py
parente41e6c8bc72e3300a0fa137f198454341bc315b1 (diff)
downloadprogramming-problem-solving-a1eb38bebe6ce1668c3f96489506c3b05b9fe5cb.tar.gz
Move stuff around
Diffstat (limited to 'kattis-open/almostunionfind/geninput.py')
-rwxr-xr-xkattis-open/almostunionfind/geninput.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/kattis-open/almostunionfind/geninput.py b/kattis-open/almostunionfind/geninput.py
new file mode 100755
index 0000000..5eef1f3
--- /dev/null
+++ b/kattis-open/almostunionfind/geninput.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+
+from random import randint as rand
+
+n, m = rand(10, 1000), rand(10, 1000)
+print(n, m)
+
+for _ in range(m):
+ t = rand(1, 3)
+ if t < 3:
+ p, q = rand(1, n), rand(1, n)
+ print(t, p, q)
+ else:
+ p = rand(1, n)
+ print(t, p)