1. 程式人生 > >CCF認證201809-2買菜

CCF認證201809-2買菜

長時間 imp 人的 約定 ret 時長 版權 mage 作者

問題描述
  小H和小W來到了一條街上,兩人分開買菜,他們買菜的過程可以描述為,去店裏買一些菜然後去旁邊的一個廣場把菜裝上車,兩人都要買n種菜,所以也都要裝n次車。
具體的,對於小H來說有n個不相交的時間段[a1,b1],[a2,b2]...[an,bn]在裝車,對於小W來說有n個不相交的時間段[c1,d1],[c2,d2]...[cn,dn]在裝車。
其中,一個時間段[s, t]表示的是從時刻s到時刻t這段時間,時長為t-s。   由於他們是好朋友,他們都在廣場上裝車的時候會聊天,他們想知道他們可以聊多長時間。 輸入格式   輸入的第一行包含一個正整數n,表示時間段的數量。   接下來n行每行兩個數ai,bi,描述小H的各個裝車的時間段。   接下來n行每行兩個數ci,di,描述小W的各個裝車的時間段。 輸出格式   輸出一行,一個正整數,表示兩人可以聊多長時間。 樣例輸入 4 1 3 5 6 9 13 14 15 2 4 5 7 10 11 13 14 樣例輸出 3 數據規模和約定   對於所有的評測用例,1 ≤ n ≤ 2000, ai
< bi < ai+1,ci < di < ci+1,對於所有的i(1 ≤ i ≤ n)有,1 ≤ ai, bi, ci, di ≤ 1000000。

一開始的思路是:

技術分享圖片

也就是算出重合時間,代碼如下,但是提交之後得到的分數是10分,尷尬 ̄□ ̄||,有大神幫忙看看,歡迎批評指正。

import java.util.Scanner;

public class BuyVetab {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int
n = sc.nextInt(); int[] a = new int[n*2]; int[] b = new int[n*2]; for (int i = 0; i < n*2; i++) { a[i] = sc.nextInt(); b[i] = sc.nextInt(); } // 取a,c最小值,b,d最大值 int secon = 0; for (int i = 0; i < n; i++) { int
x = getMax(a[i], a[n+i]); int y = getMin(b[i], b[n+i]); if(y-x > 0){ secon += y-x; } } System.out.println(secon); } public static int getMin(int x, int y) { if (x < y) { return x; } else { return y; } } public static int getMax(int x, int y) { if (x > y) { return x; } else { return y; } } }

然後就上網搜別人的解決思路,感謝互聯網,感謝大神的思路。我突然感覺到了代碼的魅力。

貼一下大神的解決思路和代碼吧。

技術分享圖片

技術分享圖片

import java.util.Scanner;

public class 買菜 {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int[] t = new int[1000000];
        int count = 0;

        for (int i = 0; i < n * 2; i++) {
            int a = input.nextInt();
            int b = input.nextInt();
            for (int j = a; j < b; j++)
                t[j]++;
        }

        for (int i : t)
            if (i > 1)
                count++;

        System.out.println(count);
    }
}
--------------------- 
作者:AivenZ 
來源:CSDN 
原文:https://blog.csdn.net/AivenZhong/article/details/83343579 
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!

代碼簡潔,思路流暢,讓我這個菜逼深深受教。

CCF認證201809-2買菜