数苹果和橘子

时间:2019-01-10 12:31:19

标签: java testcase

我已经看到这个问题已经提过,这是链接:Apple and Orange HackerRank。我必须告诉你,我的疑问不像这个人,只是我编写了一个对大多数测试用例都适用的代码,但对某些测试用例都失败了。

我已经检查了我的代码,而且我相当有信心我的代码可以正常工作。

问题链接为:Apple And Orange HackerRank Question

问题陈述

给一个人的房子,房子的房子长度在变量 s和t 之间,我们有两棵树,一棵是苹果,另一棵是橙色。由于我们分别得到了下落的苹果和橙子的距离,因此我们要做的是找到那些距离介于s and t之间的苹果和橙子,或者我必须说哪个落在xyz人的屋。

输入格式

  1. 第一行包含两个以空格分隔的整数,分别表示s和t的值。
  2. 第二行包含两个用空格分隔的整数,分别表示a和b的值。
  3. 第三行包含两个以空格分隔的整数,分别表示m和n的值。
  4. 第四行包含用空格分隔的整数,这些整数表示每个苹果从点a落下的相应距离。
  5. 第五行包含用空格分隔的整数,该整数表示每个橙色点从点b落下的相应距离。

代码

static void countApplesAndOranges(int s, int t, int a, int b, int[] apples, int[] oranges) {
  int appleSum=0, orangeSum=0, appleCount=0, orangeCount=0;

  for(int i : apples){
      appleSum = Math.abs(a+i);

      if(appleSum>=s && appleSum<=t)
        appleCount++;
  }

  for(int j : oranges){
      orangeSum = Math.abs(b+j);

      if(orangeSum>=s && orangeSum<=t)
        orangeCount++;
  }

  System.out.print(appleCount + "\n" + orangeCount);
}

这是我的代码,可以在大多数测试用例中正常工作,但是这种情况实际上使人感到困惑。我实际上是在写下一个失败的测试用例的要点,如果对您来说效果很好,它将为您提供相同链接。

通过了测试用例{1}

7 11
5 15
3 2
-2 2 1
5 -6

通过了测试用例{2}

7 10
4 12
3 3
2 3 -4
3 -2 -4

测试用例失败

37455 87275
35609 89610
73201 77971
19736 19374 -68796 0 -68800 -80005 -88383 -8147 73241 -33256 20227 0 
41620 30182 -95883 -88718 93989 44405 66495 87717 100000 -99845 -63634 
98450 -63318 23501 -39150 22335 4955 -98587 -13608 -95388 -41752 4959 
22375 -20025 -72101 -90667 -41569 94758 -26725 -53444 -8783 -81879 
57041 23682 -60064 -23505 2850 96653 18487 -6644 -90710 71994 21513 
36066 -65894 -9897 -86990 -97347 89784 88447 93133 12662 61685 -22914 
-39075 -96807 -80465 -53820 36851 -51794 -11967 36658 -75592 22004 -961 
66645 -93123 -65326 81871 -21785 -48242 -63552 32509 51078 -37656 
-14966 4017 -58411 9346 13544 -63028 -93738 93924 68463 55032 -10046 
87907 -20967 78972 85338 19584 45460 84382 -34690 -82301 14093 -60802 
4170 -90955 92241 -34932 68913 -22262 49469 -45729 7942 65753 17354 
-28647 93058 -43811 21411 8543 -44799 -71815 -40743 60445 -66946 -85090 
-96873 97385 -15317 54454 -21021 -60256 -41301 -98896 -97184 63098 
-60230 41376 42273 45807 58041 54260 21196 -85191 85267 -28305 30220 
-76826 82999 72627 7{-truncated-}

预期产量

89610
19582

还有更多内容,链接在这里:Test Case Inputs

请注意:实际上,我并没有要求解决方案,我的代码可以运行,但是我不知道为什么这种逻辑对于这样的输入会失败。

任何帮助将不胜感激!谢谢:)

编辑

我尝试使用long代替int,以防出现较大的值(如失败的测试用例中存在的值),但再次失败了!

long appleSum=0, orangeSum=0, appleCount=0, orangeCount=0;

2 个答案:

答案 0 :(得分:2)

此代码通过了所有测试用例,但出问题的是您正在使用Math.abs(),因此您不应该这样做,因为sum的值也可能为负。

static void countApplesAndOranges(int s, int t, int a, int b, int[] apples, int[] oranges) {
    int appleCount = 0;
    int orangeCount = 0;
    for(int i:apples){
        if(s<=i+a && i+a<=t)
            appleCount++;
    }
    for (int j : oranges) {
        if (s <= j + b && j+b <= t)
            orangeCount++;
    }
    System.out.println(appleCount);
    System.out.println(orangeCount);

}

答案 1 :(得分:0)

这个问题太老了,但仍然可能有人需要这个。 abs() 是你犯的错误。 看代码

void countApplesAndOranges(int s, int t, int a, int b, vector<int> apples, vector<int> oranges) {
int size_a=apples.size();
int size_o=oranges.size();
int count_a=0,count_o=0;
for(int i=0;i<size_a;i++)
{
    if(apples[i]+a>=s&&apples[i]+a<=t)
    {
        count_a++;
    }
}
for(int j=0;j<size_o;j++)
{
    if(oranges[j]+b<=t&&oranges[j]+b>=s)
    {
        count_o++;
    }
}
cout<<count_a<<'\n'<<count_o;
}