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

Обсуждение задачи 1575. Екатеринбургское метро 2

why there is a string in test#2 doesn't show up in the map ?
Послано William Chou 17 фев 2011 14:47
I insert all string that show up in the map into index (std::map<string,int> index).
And I use these code to debug:
string s1,s2;
cin >> s1 >> s2;
if (index.find(s1) == index.end() || index.find(s2) == index.end())
    while (true);//if the string doesn't show up in the map,I will get TLE.
...
And I got TLE #2.
Who can help me?
Thanks.
Sorry for my poor English.
PS:It's guarantee that I won't insert wrong string into index.

Edited by author 17.02.2011 14:50
Re: why there is a string in test#2 doesn't show up in the map ?
Послано Sandro (USU) 18 фев 2011 00:49
Test for you:

1
Himmash Nizhne_Isetskaya

Good luck! :)
Re: why there is a string in test#2 doesn't show up in the map ?
Послано William Chou 20 фев 2011 12:15
ありがど ございます。
thanks for your test,I found I forgot a comma in my code.
But passed compile.
- -
AC now.