thefourtheye's blog

By thefourtheye, 11 years ago, In English

Hi, Can anyone please tell me a test case for which this code might fail? It gives WA.

    short DPTable [1001][100][100], OxyArr [1024], NitArr[1024], WeightArr [1024], SumOxy, SumNit;
    int main()
    {
       int Total, Oxy, Nit, CyCount;
       scanf ("%d", &Total);
       while (Total--)
       {
          scanf ("%d%d%d", &Oxy, &Nit, &CyCount);
          for (int i = 0; i < CyCount; i++) scanf ("%d%d%d", &OxyArr[i], &NitArr[i], &WeightArr[i]);
          memset (DPTable, -1, sizeof DPTable);
          int Solution = numeric_limits <int>::max();
          for (int i = 1; i <= CyCount; i++)
          {
             DPTable [i-1][0][0] = 0;
             for (int j = 0; j <= Oxy; j++)
             {
                for (int k = 0; k <= Nit; k++)
                {
                   DPTable [i][j][k] = DPTable [i-1][j][k];
                   if (DPTable [i-1][max(0, j-OxyArr[i-1])][max(0, k-NitArr[i-1])] != -1)
                   {
                      if (DPTable [i][j][k] < DPTable [i-1][max(0, j-OxyArr[i-1])][max(0, k-NitArr[i-1])] + WeightArr[i-1])
                         DPTable [i][j][k] = DPTable [i-1][max(0, j-OxyArr[i-1])][max(0, k-NitArr[i-1])] + WeightArr[i-1];
                      if (j >= Oxy && k >= Nit && Solution > DPTable [i][j][k]) Solution = DPTable [i][j][k];
                   }
                }
             }
          }
          printf ("%d\n", Solution);
       }
    }

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By thefourtheye, 13 years ago, In English

Is there any road map or event calender for codeforces, just like Topcoder?!?

Full text and comments »

  • Vote: I like it
  • +10
  • Vote: I do not like it