ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1676. Смертельная битва

WA8 give me some tests
Послано Michail Yudin 18 янв 2009 23:26
Thx a lot for every man and women for tests.
Re: WA8 give me some tests
Послано Al.Cash 30 янв 2009 16:34
Try this:

4 4
1111
1110
1100
1000

The answer:
1110
1101
1011
0111
Re: WA8 give me some tests
Послано Jorjia 18 ноя 2018 21:37
My code gives right answer for this test, but still got WA8.

My algo:
1) find any perfect match (I use kuhn algorithm). If there no perfect match print unary matrix and quit.

2) for every i-monster,  remove  edge (i, match(i)), and try make alternate path for i. save result in d[] array,  and restore edge (i, match(i)) .

3) We can select (i,j) edge  only if  Mij = true AND     (i,j) edge in perfect match, or j is free vertex,  or  d[ match( j ) ] is true.

Can give some tests ?
Re: WA8 give me some tests
Послано Mickkie 29 ноя 2023 23:38
Test:
6 7
1111000
1110000
1100000
1000100
0000110
0000110

WA8 answer:
0000111
0001111
0011111
0111011
1111001
1111001