Puzzle Description
Given \$N\$ numbers, \$N <= 10^5\,ドル count the total pairs of numbers \$(N_i, N_j)\$ that have a difference of \$K = N_i - N_j\$ where \0ドル < K < 10^9\$.
Input Format:
1st line contains \$N\$ and \$K\$ (integers).
2nd line contains \$N\$ numbers of the set. All the \$N\$ numbers are assured to be distinct.
Output Format:
- One integer saying the number of pairs of numbers that have a difference \$K\$.
Time limit is 5 seconds.
Sample Input : 5 2 1 5 3 4 2 Sample Output: 3
First I've tried using ArrayList
s and later tried using arrays. The code is bad and does not at all follow normal conventions of Java. But I'm not looking at that because execution time doesn't depend on it, right?
But to achieve the puzzle description I couldn't see any better logic than this:
import java.util.Scanner;
public class k_diff {
public int process() {
Scanner scanner = new Scanner(System.in);
int total_nums = scanner.nextInt();
int diff = scanner.nextInt();
int ary_nums[] = new int[total_nums];
for (int i = 0; i < total_nums; i++) {
ary_nums[i] = scanner.nextInt();
}
int len = ary_nums.length;
int count = 0;
for (int j = 0; j < len - 1; j++) {
for (int k = j + 1; k < len; k++) {
if (Math.abs(ary_nums[j] - ary_nums[k]) == diff) {
count++;
}
}
}
return count;
}
public static void main(String args[]) {
k_diff kdiff = new k_diff();
System.out.println(kdiff.process());
}
}
-
\$\begingroup\$ What is N and K in your sample? \$\endgroup\$Michael K– Michael K2011年12月30日 17:09:56 +00:00Commented Dec 30, 2011 at 17:09
-
\$\begingroup\$ First two nums - 5(N) 2(K) \$\endgroup\$cypronmaya– cypronmaya2011年12月30日 17:15:27 +00:00Commented Dec 30, 2011 at 17:15
2 Answers 2
Some things which just jump into my eyes (even if not asked, I'll tell you anyway):
- Whitespaces: Use whitespaces were appropriate, f.e.
for(int i=0;i<nums;i++)
is harder to rad thenfor(int i = 0; i < nums; i++)
. - Meaningful names: Name your variables after what they are, not what type they are. This especially includes simple
for
loops. It might be taught or standard to usei
, but I consider it bad practice because you never know what exactlyi
is at first glance. Give your variables meaningful names, please, they deserve love too! Same goes for your classes. - Split up where appropriate: if you've got only one function (
main
) you're most likely doing something wrong. Split it into Input, Processing and Output.
Other than comparing the numbers as they are given (in order), sorting them and comparing would take fewer cycles and run much faster.
So the above code can be optimized to this:
Arrays.sort(ary_nums);
for (int i = total_nums - 1; i > 0; i--) {
for (int j = i - 1; j >= 0; j--) {
if (ary_nums[i] - ary_nums[j] == diff) {
count++;
j = 0;
}
}
}
-
\$\begingroup\$ This is still an \$O(n^2)\$ loop. The optimized form needs a single loop decreasing either i or j as appropriate. \$\endgroup\$David G.– David G.2020年01月24日 01:22:40 +00:00Commented Jan 24, 2020 at 1:22
Explore related questions
See similar questions with these tags.