結果

問題 No.15 カタログショッピング
ユーザー mudbdbmudbdb
提出日時 2015-07-04 02:50:12
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 3,857 ms / 5,000 ms
コード長 867 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 22:53:46
合計ジャッジ時間 11,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 510 ms
5,376 KB
testcase_06 AC 2,623 ms
5,376 KB
testcase_07 AC 2,794 ms
5,376 KB
testcase_08 AC 3,857 ms
5,376 KB
testcase_09 AC 1,275 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:40:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |   scanf("%d", &N);
      |   ^~~~~~~~~~~~~~~
main.c:41:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |   scanf("%d", &S);
      |   ^~~~~~~~~~~~~~~
main.c:44:23: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |   for (i=0; i<N; i++) scanf("%d", &(P[i]));
      |                       ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
int N;
int S;
int *P;
int *Ans;
int Ans_n = 0;
int max(int index, int sum)
{
  int i;
  for (i=index; i<N; i++) {
    sum += P[i];
    if (S <= sum) break;
  }
  return sum;
}
void add(int index, int sum)
{
  int i;
  if (index < N) {
    if (sum + P[index] == S) {
      for (i=0; i<Ans_n; i++) printf("%d ", Ans[i]+1);
      printf("%d\n", index+1);
    } else {
      if (sum + P[index] < S) {
        if (S <= max(index + 1, sum + P[index])) {
          Ans[Ans_n] = index;
          Ans_n++;
          add(index + 1, sum + P[index]);
          Ans_n--;
        }
      }
    }
    add(index + 1, sum);
  }
  return;
}
int main()
{
  scanf("%d", &N);
  scanf("%d", &S);
  P = (int*)malloc(sizeof(int)*N);
  int i;
  for (i=0; i<N; i++) scanf("%d", &(P[i]));

  Ans = (int*)malloc(sizeof(int)*N);
  add(0, 0);

  return 0;
}
0