From 7f856c7ff080b8d455b9ed16c2e57dd862c3879d Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sat, 5 Nov 2022 01:41:11 +0200 Subject: moved some file --- closestToTheLeft/main | Bin 27424 -> 0 bytes closestToTheLeft/main.cpp | 36 ------------------------------------ closestToTheLeft/main_input0.txt | 3 --- closestToTheLeft/main_output0.txt | 5 ----- 4 files changed, 44 deletions(-) delete mode 100755 closestToTheLeft/main delete mode 100644 closestToTheLeft/main.cpp delete mode 100644 closestToTheLeft/main_input0.txt delete mode 100644 closestToTheLeft/main_output0.txt (limited to 'closestToTheLeft') diff --git a/closestToTheLeft/main b/closestToTheLeft/main deleted file mode 100755 index 2847c76..0000000 Binary files a/closestToTheLeft/main and /dev/null differ diff --git a/closestToTheLeft/main.cpp b/closestToTheLeft/main.cpp deleted file mode 100644 index d058458..0000000 --- a/closestToTheLeft/main.cpp +++ /dev/null @@ -1,36 +0,0 @@ -#include - -using namespace std; - -int bs(vector &a, int toFind) { - int low = -1; - int high = a.size(); - int mid = (high + low) / 2; - while (low + 1 < high) { - if (a[mid] <= toFind) { - low = mid; - } else { - high = mid; - } - mid = (high + low) / 2; - } - return low; -} - -int main() { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int n, k; - cin >> n >> k; - - vector a(n); - vector q(n); - - for (int &x : a) - cin >> x; - for (int i = 0; i < k; i++) { - int y; - cin >> y; - cout << bs(a, y) + 1 << endl; - } -} diff --git a/closestToTheLeft/main_input0.txt b/closestToTheLeft/main_input0.txt deleted file mode 100644 index 007d6fe..0000000 --- a/closestToTheLeft/main_input0.txt +++ /dev/null @@ -1,3 +0,0 @@ -5 5 -3 3 5 8 9 -2 4 8 1 10 diff --git a/closestToTheLeft/main_output0.txt b/closestToTheLeft/main_output0.txt deleted file mode 100644 index 57cf499..0000000 --- a/closestToTheLeft/main_output0.txt +++ /dev/null @@ -1,5 +0,0 @@ -1 -3 -4 -1 -6 -- cgit v1.2.3