# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
467526 | 2021-08-23T12:28:39 Z | LucaIlie | Norela (info1cup18_norela) | C | 17 ms | 268 KB |
#include <stdio.h> #define MAX_M 24 long long spell[MAX_M]; int main() { int n, m, k, p, minUsedSpells, usedSpells, solMask, mask, i, j; long long xor; scanf( "%d%d", &n, &m ); for ( i = 0; i < m; i++ ) { scanf( "%d", &k ); spell[i] = 0; for ( j = 0; j < k; j++ ) { scanf( "%d", &p ); spell[i] += (1 << (p - 1)); } } minUsedSpells = n + 1; solMask = -1; for ( mask = 0; mask < (1 << m); mask++ ) { xor = 0; usedSpells = 0; for ( i = 0; i < m; i++ ) { if ( ((mask >> i) & 1) == 1 ) { xor = xor ^ spell[i]; usedSpells++; } } if ( xor == (1 << n) - 1 ) { if ( usedSpells < minUsedSpells ) { minUsedSpells = usedSpells; solMask = mask; } } } printf( "%d\n", minUsedSpells ); for ( i = 0; i < m; i++ ) { if ( ((solMask >> i) & 1) == 1 ) printf( "%d ", i + 1 ); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 204 KB | Output is correct |
2 | Incorrect | 17 ms | 268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 204 KB | Output is correct |
2 | Incorrect | 17 ms | 268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 204 KB | Output is correct |
2 | Incorrect | 17 ms | 268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 17 ms | 204 KB | Output is correct |
2 | Incorrect | 17 ms | 268 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |