結果
問題 | No.332 数列をプレゼントに |
ユーザー | FF256grhy |
提出日時 | 2015-12-25 11:52:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,080 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 23,680 KB |
実行使用メモリ | 25,664 KB |
最終ジャッジ日時 | 2024-09-18 23:45:06 |
合計ジャッジ時間 | 8,874 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | RE | - |
testcase_19 | AC | 6 ms
5,376 KB |
testcase_20 | AC | 6 ms
5,376 KB |
testcase_21 | AC | 6 ms
6,944 KB |
testcase_22 | AC | 6 ms
6,944 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | AC | 6 ms
6,940 KB |
testcase_34 | AC | 7 ms
7,612 KB |
testcase_35 | AC | 9 ms
10,744 KB |
testcase_36 | AC | 1 ms
6,944 KB |
testcase_37 | AC | 6 ms
6,944 KB |
testcase_38 | AC | 5 ms
6,940 KB |
testcase_39 | AC | 6 ms
6,944 KB |
testcase_40 | AC | 6 ms
6,944 KB |
testcase_41 | AC | 6 ms
6,940 KB |
testcase_42 | AC | 6 ms
6,940 KB |
testcase_43 | AC | 5 ms
6,944 KB |
testcase_44 | AC | 5 ms
6,940 KB |
testcase_45 | RE | - |
testcase_46 | AC | 4 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d%lld", &n, &x); | ~~~~~^~~~~~~~~~~~~~~~~~ main.cpp:17:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d", &a[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h> #define LIM 57797 #define SUM (LIM + 79) int n, a[100], s_sum[SUM], s_ans[SUM + 1][100], s_c = 1; long long int x, l_sum[1<<20], l_c; int main(void) { s_sum[0] = s_c; s_c++; scanf("%d%lld", &n, &x); int i, j, k, l_c = 0; for(i = 0; i < n; i++) { scanf("%d", &a[i]); if(a[i] < LIM) { for(j = SUM - 1; 0 <= j; j--) { if(s_sum[j] != 0 && s_sum[ j + a[i] ] == 0) { for(k = 0; k < i; k++) { s_ans[s_c][k] = s_ans[ s_sum[j] ][k]; } s_ans[s_c][i] = 1; s_sum[ j + a[i] ] = s_c; s_c++; } } } else { for(j = 0; j < (1 << l_c); j++) { l_sum[ j + (1 << l_c) ] = l_sum[j] + a[i]; } l_c++; } } int flag = 0; for(j = 0; j < (1 << l_c); j++) { long long int v = x - l_sum[j]; if(0 <= v && v < SUM && s_sum[v] != 0) { flag = 1; for(i = 0; i < n; i++) { if(a[i] < LIM) { printf("%c", s_ans[ s_sum[v] ][i] ? 'o' : 'x'); } else { printf("%c", j % 2 ? 'o' : 'x'); j /= 2; } } printf("\n"); break; } } if(! flag) { printf("No\n"); } return 0; }