about summary refs log tree commit diff
path: root/codechef/frogs.py
diff options
context:
space:
mode:
Diffstat (limited to 'codechef/frogs.py')
-rwxr-xr-xcodechef/frogs.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/codechef/frogs.py b/codechef/frogs.py
new file mode 100755
index 0000000..23f51e5
--- /dev/null
+++ b/codechef/frogs.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+for t in range(int(input())):
+    n = int(input())
+    w, l = list(map(int, input().split())), list(map(int, input().split()))
+    last, result, frogs = -1, 0, sorted(zip(w, range(n), l))
+    for weight, position, length in frogs:
+        hits = 0 if position > last else (last-position)//length + 1
+        last = position + hits*length
+        result += hits
+    print(result)