about summary refs log tree commit diff
path: root/others/volume1/075.pas
diff options
context:
space:
mode:
authorRaphael McSinyx <vn.mcsinyx@gmail.com>2017-02-19 11:37:07 +0700
committerRaphael McSinyx <vn.mcsinyx@gmail.com>2017-02-19 11:37:07 +0700
commita53c4128c29f98b5fdfd9b0e13a3bbe094d975ec (patch)
tree77351187cc721bb535ffb3ff140e1355276ba8c2 /others/volume1/075.pas
parentfed71ad5b9c7e3524931b939ec369a559cf2b0b9 (diff)
downloadcp-a53c4128c29f98b5fdfd9b0e13a3bbe094d975ec.tar.gz
Update others/volume1
Diffstat (limited to 'others/volume1/075.pas')
-rw-r--r--others/volume1/075.pas30
1 files changed, 30 insertions, 0 deletions
diff --git a/others/volume1/075.pas b/others/volume1/075.pas
new file mode 100644
index 0000000..1ccacaf
--- /dev/null
+++ b/others/volume1/075.pas
@@ -0,0 +1,30 @@
+uses clib;
+
+var
+  n, idx, i, j: int16;
+  a, b: array of int64;
+  k: int64;
+
+begin
+  readln(n, k);
+  setlength(a, n);
+  setlength(b, n);
+  for i := 0 to n - 1 do
+    begin
+      read(a[i]);
+      b[i] := a[i]
+    end;
+  qsort(b);
+  for i := 0 to n - 1 do
+    begin
+      idx := bsearch(b, a[i] + k);
+      if idx > -1 then
+        for j := 0 to n - 1 do
+          if a[j] = b[idx] then
+            begin
+              writeln('YES'#10, i + 1, ' ', j + 1);
+              exit
+            end
+    end;
+  writeln('NO')
+end.