QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#298399#6250. کلاس طراحی الگوریتم‌هاmahdimalverdiWA 167ms57044kbJava111.4kb2024-01-06 07:40:442024-01-06 07:40:45

Judging History

你现在查看的是最新测评结果

  • [2024-01-06 07:40:45]
  • 评测
  • 测评结果:WA
  • 用时:167ms
  • 内存:57044kb
  • [2024-01-06 07:40:44]
  • 提交

answer

import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Codechef {
    public static void main(String[] args) throws java.lang.Exception {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] nums1 = new int[n];
        int[] nums2 = new int[n];

        for (int i = 0; i < n; i++) {
            nums1[i] = sc.nextInt();
        }
        for (int i = 0; i < n; i++) {
            nums2[i] = sc.nextInt();
        }

        PriorityQueue<Student> s1 = new PriorityQueue<>(Comparator.comparing(l -> -1 * l.num1));

        for (int i = 0; i < n; i++) {
            Student student = new Student(nums1[i], nums2[i]);
            s1.add(student);
        }
        long sum = 0;

        s1.poll();
        while (!s1.isEmpty()) {
            Student student1 = s1.poll();
            Student student2 = s1.poll();
            if (student2 == null || student1.num2 > student2.num2) {
                sum += student1.num2;
            } else {
                sum += student2.num2;
            }
        }

        System.out.println(sum);

    }

    public static class Student {
        public Integer num1;
        public Integer num2;

        public Student(Integer num1, Integer num2) {
            this.num1 = num1;
            this.num2 = num2;
        }
    }
}

詳細信息

Test #1:

score: 100
Accepted
time: 93ms
memory: 53756kb

input:

3
1 8 4
12 11 1

output:

12

result:

ok single line: '12'

Test #2:

score: 0
Accepted
time: 99ms
memory: 54368kb

input:

5
1 2 3 4 5
2 3 4 5 6

output:

8

result:

ok single line: '8'

Test #3:

score: -100
Wrong Answer
time: 167ms
memory: 57044kb

input:

1180
961126767 261224755 907153108 798212484 599761097 743695587 995677693 496776751 924069769 564704455 429970021 140904220 294673948 518226561 354056387 468468805 420623399 648026114 519204933 451212087 891148030 391954964 211868427 570192789 268490285 866150098 808117417 634459540 981698547 75398...

output:

396052116902

result:

wrong answer 1st lines differ - expected: '444484036729', found: '396052116902'