aboutsummaryrefslogtreecommitdiff
path: root/works/life/algorithm-contest-3/test-data/5
diff options
context:
space:
mode:
Diffstat (limited to 'works/life/algorithm-contest-3/test-data/5')
-rw-r--r--works/life/algorithm-contest-3/test-data/5/1.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/10.cpp20
-rw-r--r--works/life/algorithm-contest-3/test-data/5/11.cpp20
-rw-r--r--works/life/algorithm-contest-3/test-data/5/12.cpp20
-rw-r--r--works/life/algorithm-contest-3/test-data/5/13.cpp20
-rw-r--r--works/life/algorithm-contest-3/test-data/5/14.in5
-rw-r--r--works/life/algorithm-contest-3/test-data/5/2.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/3.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/4.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/5.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/6.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/7.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/8.in6
-rw-r--r--works/life/algorithm-contest-3/test-data/5/9.in6
14 files changed, 0 insertions, 139 deletions
diff --git a/works/life/algorithm-contest-3/test-data/5/1.in b/works/life/algorithm-contest-3/test-data/5/1.in
deleted file mode 100644
index 67955b5..0000000
--- a/works/life/algorithm-contest-3/test-data/5/1.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
-100
-200
-300
-400
-500 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/10.cpp b/works/life/algorithm-contest-3/test-data/5/10.cpp
deleted file mode 100644
index c74d96d..0000000
--- a/works/life/algorithm-contest-3/test-data/5/10.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <algorithm>
-#include <iostream>
-#include <random>
-
-const int kNumberCount = 100;
-const int kChooseCount = 40;
-
-int main() {
- std::random_device random_device;
- auto random = std::default_random_engine{random_device()};
- std::uniform_int_distribution<int> distribution{0, 200000};
-
- std::cout << kNumberCount << ' ' << kChooseCount << "\n";
-
- for (int i = 0; i < kNumberCount; i++) {
- std::cout << distribution(random) - 100000 << "\n";
- }
-
- return 0;
-}
diff --git a/works/life/algorithm-contest-3/test-data/5/11.cpp b/works/life/algorithm-contest-3/test-data/5/11.cpp
deleted file mode 100644
index 039ca04..0000000
--- a/works/life/algorithm-contest-3/test-data/5/11.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <algorithm>
-#include <iostream>
-#include <random>
-
-const int kNumberCount = 1000;
-const int kChooseCount = 200;
-
-int main() {
- std::random_device random_device;
- auto random = std::default_random_engine{random_device()};
- std::uniform_int_distribution<int> distribution{0, 200000};
-
- std::cout << kNumberCount << ' ' << kChooseCount << "\n";
-
- for (int i = 0; i < kNumberCount; i++) {
- std::cout << distribution(random) - 100000 << "\n";
- }
-
- return 0;
-}
diff --git a/works/life/algorithm-contest-3/test-data/5/12.cpp b/works/life/algorithm-contest-3/test-data/5/12.cpp
deleted file mode 100644
index f7488fb..0000000
--- a/works/life/algorithm-contest-3/test-data/5/12.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <algorithm>
-#include <iostream>
-#include <random>
-
-const int kNumberCount = 10000;
-const int kChooseCount = 1000;
-
-int main() {
- std::random_device random_device;
- auto random = std::default_random_engine{random_device()};
- std::uniform_int_distribution<int> distribution{0, 200000};
-
- std::cout << kNumberCount << ' ' << kChooseCount << "\n";
-
- for (int i = 0; i < kNumberCount; i++) {
- std::cout << distribution(random) - 100000 << "\n";
- }
-
- return 0;
-} \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/13.cpp b/works/life/algorithm-contest-3/test-data/5/13.cpp
deleted file mode 100644
index b4e115e..0000000
--- a/works/life/algorithm-contest-3/test-data/5/13.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <algorithm>
-#include <iostream>
-#include <random>
-
-const int kNumberCount = 100000;
-const int kChooseCount = 30000;
-
-int main() {
- std::random_device random_device;
- auto random = std::default_random_engine{random_device()};
- std::uniform_int_distribution<int> distribution{0, 200000};
-
- std::cout << kNumberCount << ' ' << kChooseCount << "\n";
-
- for (int i = 0; i < kNumberCount; i++) {
- std::cout << distribution(random) - 100000 << "\n";
- }
-
- return 0;
-}
diff --git a/works/life/algorithm-contest-3/test-data/5/14.in b/works/life/algorithm-contest-3/test-data/5/14.in
deleted file mode 100644
index 9a880e1..0000000
--- a/works/life/algorithm-contest-3/test-data/5/14.in
+++ /dev/null
@@ -1,5 +0,0 @@
-4 4
--100
--100
--100
-100 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/2.in b/works/life/algorithm-contest-3/test-data/5/2.in
deleted file mode 100644
index 44e28ef..0000000
--- a/works/life/algorithm-contest-3/test-data/5/2.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
--100
--200
--300
--400
--500 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/3.in b/works/life/algorithm-contest-3/test-data/5/3.in
deleted file mode 100644
index d784df0..0000000
--- a/works/life/algorithm-contest-3/test-data/5/3.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 4
--100
--200
--300
--400
--500 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/4.in b/works/life/algorithm-contest-3/test-data/5/4.in
deleted file mode 100644
index f710da1..0000000
--- a/works/life/algorithm-contest-3/test-data/5/4.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
-20
--300
-100
-200
--100 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/5.in b/works/life/algorithm-contest-3/test-data/5/5.in
deleted file mode 100644
index 7eba3f5..0000000
--- a/works/life/algorithm-contest-3/test-data/5/5.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
-100
--100
--200
-300
-400 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/6.in b/works/life/algorithm-contest-3/test-data/5/6.in
deleted file mode 100644
index 106730a..0000000
--- a/works/life/algorithm-contest-3/test-data/5/6.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 4
-100
--100
--200
-300
-400 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/7.in b/works/life/algorithm-contest-3/test-data/5/7.in
deleted file mode 100644
index 01bd232..0000000
--- a/works/life/algorithm-contest-3/test-data/5/7.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
--100
--200
-0
--300
--400 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/8.in b/works/life/algorithm-contest-3/test-data/5/8.in
deleted file mode 100644
index 7e0ce0b..0000000
--- a/works/life/algorithm-contest-3/test-data/5/8.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 3
--100
-200
-0
--300
--400 \ No newline at end of file
diff --git a/works/life/algorithm-contest-3/test-data/5/9.in b/works/life/algorithm-contest-3/test-data/5/9.in
deleted file mode 100644
index 210953e..0000000
--- a/works/life/algorithm-contest-3/test-data/5/9.in
+++ /dev/null
@@ -1,6 +0,0 @@
-5 4
--100
--100
-100
-100
-200 \ No newline at end of file