problem_id
stringlengths 2
6
| contest
stringlengths 1
4
| problem
stringlengths 1
3
| lang
stringclasses 2
values | problem_title
stringlengths 0
63
| problem_statement
stringlengths 0
13.7k
| page
stringlengths 11.2k
95.4k
| long_tags
stringlengths 2
1.79k
| short_tags
stringlengths 2
657
| tutorial_link
stringlengths 0
87
| tutorial_page
stringlengths 0
1.22M
|
---|---|---|---|---|---|---|---|---|---|---|
1567C | 1567 | C | ru | C. Проблемные переносы | <div class="problem-statement"><div class="header"><div class="title">C. Проблемные переносы</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Алиса только недавно изучила сложение. Однако она еще не полностью освоила концепт «переноса»: вместо того, чтобы переносить цифру в <span class="tex-font-style-it">следующий</span> разряд, она переносит ее <span class="tex-font-style-it">через один разряд</span>.</p><p>Например, <span class="tex-font-style-bf">обычный</span> способ подсчета суммы $$$2039 + 2976$$$ показан ниже: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/6cb0cb293dab7ce533fb10c4da8e27610d5181b9.png" style="max-width: 100.0%;max-height: 100.0%;"/> </center><p>Однако Алиса подсчитывает сумму следующим образом: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/98f8d3960e701645917956668cbe390f5a807d04.png" style="max-width: 100.0%;max-height: 100.0%;"/> </center><p>А именно, она делает следующее: </p><ul> <li> складывает $$$9$$$ и $$$6$$$, получая $$$15$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец «$$$0$$$ $$$9$$$»; </li><li> складывает $$$3$$$ и $$$7$$$, получая $$$10$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец «$$$2$$$ $$$2$$$»; </li><li> складывает $$$1$$$, $$$0$$$, и $$$9$$$, получая $$$10$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец над знаком плюс; </li><li> складывает $$$1$$$, $$$2$$$ и $$$2$$$, получая $$$5$$$; </li><li> складывает $$$1$$$, получая $$$1$$$. </li></ul> Таким образом, она получает неправильный результат $$$15005$$$.<p>Алиса пришла к Бобу и рассказала, что она сложила два целых числа и получила в результате $$$n$$$. Но Боб знает, что Алиса сложила числа как умеет. Помогите Бобу посчитать количество <span class="tex-font-style-it">упорядоченных пар положительных целых чисел</span> таких, что при сложении методом Алисы получается число $$$n$$$. Обратите внимание, что пары $$$(a, b)$$$ и $$$(b, a)$$$ считаются различными при $$$a \ne b$$$.</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>Во входных данных находятся несколько наборов входных данных. В первой строке задано одно целое число $$$t$$$ ($$$1 \leq t \leq 1000$$$) — количество наборов входных данных. Далее следуют сами наборы.</p><p>В единственно строке каждого набора задано одно целое число $$$n$$$ ($$$2 \leq n \leq 10^9$$$) — число, которое получилось у Алисы.</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого набора входных данных выведите одно целое число — количество <span class="tex-font-style-it">упорядоченных</span> пар <span class="tex-font-style-bf">положительных целых чисел</span>, таких что при сложении своим методом Алиса получит в результате $$$n$$$.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5
100
12
8
2021
10000
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
9
4
7
44
99
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>В первом наборе входных данных при сложении Алисой любой из следующих пар: $$$1 + 9$$$, $$$2 + 8$$$, $$$3 + 7$$$, $$$4 + 6$$$, $$$5 + 5$$$, $$$6 + 4$$$, $$$7 + 3$$$, $$$8 + 2$$$ или $$$9 + 1$$$, она получит $$$100$$$ в результате. Изображение, показывающее как Алиса сложит $$$6 + 4$$$, показано ниже: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/704366959d40aa707742d72e1e660c9027ff73cc.png" style="max-width: 100.0%;max-height: 100.0%;"/> </center></div></div> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="X-Csrf-Token" content="6f14a78cb6e7b51dc022360a12bc6492"/>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=0.01"/>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery-1.8.3.js"></script>
<script type="application/javascript">
window.locale = "ru";
window.standaloneContest = false;
function adjustViewport() {
var screenWidthPx = Math.min($(window).width(), window.screen.width);
var siteWidthPx = 1100; // min width of site
var ratio = Math.min(screenWidthPx / siteWidthPx, 1.0);
var viewport = "width=device-width, initial-scale=" + ratio;
$('#viewport').attr('content', viewport);
var style = $('<style>html * { max-height: 1000000px; }</style>');
$('html > head').append(style);
}
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
adjustViewport();
}
/* Protection against trailing dot in domain. */
let hostLength = window.location.host.length;
if (hostLength > 1 && window.location.host[hostLength - 1] === '.') {
window.location = window.location.protocol + "//" + window.location.host.substring(0, hostLength - 1);
}
</script>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="profileName" content="i1">
<meta name="google-site-verification" content="OTd2dN5x4nS4OPknPI9JFg36fKxjqY0i1PSfFPv_J90"/>
<meta property="fb:admins" content="100001352546622" />
<meta property="og:image" content="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<link rel="image_src" href="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<meta property="og:title" content="Задача - C - Codeforces"/>
<meta property="og:description" content=""/>
<meta property="og:site_name" content="Codeforces"/>
<meta name="cc" content="e019f64ee12ed74315f46e5ea85bf33cee95598f"/>
<meta name="utc_offset" content="+03:00"/>
<meta name="verify-reformal" content="f56f99fd7e087fb6ccb48ef2" />
<title>Задача - C - Codeforces</title>
<meta name="description" content="Codeforces. Соревнования и олимпиады по информатике и программированию, сообщество программистов" />
<meta name="keywords" content="программирование информатика контест олимпиада алгоритмы c++ java графы vkcup" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/font-awesome.min.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/line-awesome.min.css" type="text/css" charset="utf-8" />
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="//codeforces.org/s/23860/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="//codeforces.org/s/23860/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="//codeforces.org/s/23860/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="//codeforces.org/s/23860/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="//codeforces.org/s/23860/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="//codeforces.org/s/23860/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="//codeforces.org/s/23860/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="//codeforces.org/s/23860/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="//codeforces.org/s/23860/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="//codeforces.org/s/23860/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="//codeforces.org/s/23860/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="//codeforces.org/s/23860/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="//codeforces.org/s/23860/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="//codeforces.org/s/23860/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!--CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/css/prettify.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/clear.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/ttypography.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/problem-statement.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/second-level-menu.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/roundbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/datatable.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/table-form.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/topic.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.jgrowl.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/facebox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.wysiwyg.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.autocomplete.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/codeforces.datepick.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/colorbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.drafts.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/community.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/sidebar-menu.css" type="text/css" charset="utf-8" />
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$$$','$$$']], displayMath: [['$$$$$$','$$$$$$']]}
});
MathJax.Hub.Register.StartupHook("End", function () {
Codeforces.runMathJaxListeners();
});
</script>
<script type="text/javascript" async
src="https://mathjax.codeforces.org/MathJax.js?config=TeX-AMS_HTML-full"
>
</script>
<!-- /MathJax -->
<script type="text/javascript" src="//codeforces.org/s/23860/js/prettify/prettify.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/moment-with-locales.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/pushstream.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.easing.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.jgrowl.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.swipe.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.hotkeys.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/facebox.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.colorpicker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.table.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.image.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.link.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.autocomplete.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ie6blocker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ba-bbq.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.drafts.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/clipboard.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/autosize.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/sjcl.js"></script>
<script type="text/javascript" src="/scripts/a3c2074ccb6f4b67a3c2bb62db02053f/ru/codeforces-options.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/codeforces.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/EventCatcher.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/preparedVerdictFormats-ru.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/confetti.min.js"></script>
<!--/CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/skins/markitup/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/sets/markdown/style.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/sets/markdown/set.js"></script>
<!--[if IE]>
<style>
#sidebar {
padding-left: 1em;
margin: 1em 1em 1em 0;
}
</style>
<![endif]-->
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick-ru.js"></script>
</head>
<body class=" "><span style='display:none;' class='csrf-token' data-csrf='6f14a78cb6e7b51dc022360a12bc6492'> </span>
<!-- .notificationTextCleaner used in Codeforces.showAnnouncements() -->
<div class="notificationTextCleaner" style="font-size: 0"></div>
<div class="button-up" style="display: none; opacity: 0.7; width: 50px; height:100%; position: fixed; left: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 3.0rem;"><i class="icon-circle-arrow-up"></i></div>
<div class="verdictPrototypeDiv" style="display: none;"></div>
<!-- Codeforces JavaScripts. -->
<script type="text/javascript">
String.prototype.hashCode = function() {
var hash = 0, i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
var queryMobile = Codeforces.queryString.mobile;
if (queryMobile === "true" || queryMobile === "false") {
Codeforces.putToStorage("useMobile", queryMobile === "true");
} else {
var useMobile = Codeforces.getFromStorage("useMobile");
if (useMobile === true || useMobile === false) {
if (useMobile != false) {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", useMobile));
}
}
}
</script>
<script type="text/javascript">
if (window.parent.frames.length > 0) {
window.stop();
}
</script>
<script type="text/javascript">
$(document).ready(function () {
(function () {
jQuery.expr[':'].containsCI = function(elem, index, match) {
return !match || !match.length || match.length < 4 || !match[3] || (
elem.textContent || elem.innerText || jQuery(elem).text() || ''
).toLowerCase().indexOf(match[3].toLowerCase()) >= 0;
}
}(jQuery));
$.ajaxPrefilter(function(options, originalOptions, xhr) {
var csrf = Codeforces.getCsrfToken();
if (csrf) {
var data = originalOptions.data;
if (originalOptions.data !== undefined) {
if (Object.prototype.toString.call(originalOptions.data) === '[object String]') {
data = $.deparam(originalOptions.data);
}
} else {
data = {};
}
options.data = $.param($.extend(data, { csrf_token: csrf }));
}
});
window.getCodeforcesServerTime = function(callback) {
$.post("/data/time", {}, callback, "json");
}
window.updateTypography = function () {
$("div.ttypography code").addClass("tt");
$("div.ttypography pre>code").addClass("prettyprint").removeClass("tt");
$("div.ttypography table").addClass("bordertable");
prettyPrint();
}
$.ajaxSetup({ scriptCharset: "utf-8" ,contentType: "application/x-www-form-urlencoded; charset=UTF-8", headers: {
'X-Csrf-Token': Codeforces.getCsrfToken()
}});
window.updateTypography();
Codeforces.signForms();
setTimeout(function() {
$(".second-level-menu-list").lavaLamp({
fx: "backout",
speed: 700
});
}, 100);
Codeforces.countdown();
$("a[rel='photobox']").colorbox();
function showAnnouncements(json) {
//info("j=" + JSON.stringify(json));
if (json.t != "a") {
return;
}
setTimeout(function() {
Codeforces.showAnnouncements(json.d, "ru");
}, Math.random() * 500);
}
function showEventCatcherUserMessage(json) {
if (json.t == "s") {
var points = json.d[5];
var passedTestCount = json.d[7];
var judgedTestCount = json.d[8];
var verdict = preparedVerdictFormats[json.d[12]];
var verdictPrototypeDiv = $(".verdictPrototypeDiv");
verdictPrototypeDiv.html(verdict);
if (judgedTestCount != null && judgedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-judged").text(judgedTestCount);
}
if (passedTestCount != null && passedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-passed").text(passedTestCount);
}
if (points != null && points != undefined) {
verdictPrototypeDiv.find(".verdict-format-points").text(points);
}
Codeforces.showMessage(verdictPrototypeDiv.text());
}
}
$(".clickable-title").each(function() {
var title = $(this).attr("data-title");
if (title) {
var tmp = document.createElement("DIV");
tmp.innerHTML = title;
$(this).attr("title", tmp.textContent || tmp.innerText || "");
}
});
$(".clickable-title").click(function() {
var title = $(this).attr("data-title");
if (title) {
Codeforces.alert(title);
} else {
Codeforces.alert($(this).attr("title"));
}
}).css("position", "relative").css("bottom", "3px");
Codeforces.showDelayedMessage();
Codeforces.reformatTimes();
//Codeforces.initializePubSub();
if (window.codeforcesOptions.subscribeServerUrl) {
window.eventCatcher = new EventCatcher(
window.codeforcesOptions.subscribeServerUrl,
[
Codeforces.getGlobalChannel(),
Codeforces.getUserChannel(),
Codeforces.getUserShowMessageChannel(),
Codeforces.getContestChannel(),
Codeforces.getParticipantChannel(),
Codeforces.getTalkChannel()
]
);
if (Codeforces.getParticipantChannel()) {
window.eventCatcher.subscribe(Codeforces.getParticipantChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getContestChannel()) {
window.eventCatcher.subscribe(Codeforces.getContestChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getGlobalChannel()) {
window.eventCatcher.subscribe(Codeforces.getGlobalChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserShowMessageChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserShowMessageChannel(), function(json) {
showEventCatcherUserMessage(json);
});
}
}
Codeforces.setupContestTimes("/data/contests");
Codeforces.setupSpoilers();
Codeforces.setupTutorials("/data/problemTutorial");
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-743380-5']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = (document.location.protocol == 'https:' ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div id="body">
<div class="side-bell" style="visibility: hidden; display: none; opacity: 0.7; width: 40px; position: fixed; right: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 1.5rem;">
<span class="icon-stack" style="width: 100%;">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-bell-alt icon-light"></i>
</span>
<br/>
<span class="side-bell__count" style="position: relative; top: -10px;"></span>
</div>
<div id="header" style="position: relative;">
<div style="float:left; max-height: 60px;">
<a href="/"><img height="65" style="height: 65px;" alt="Codeforces" title="Codeforces" src="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png"/></a>
</div>
<div class="lang-chooser">
<div style="text-align: right;">
<a href="?locale=en"><img src="//codeforces.org/s/23860/images/flags/24/gb.png" title="In English" alt="In English"/></a>
<a href="?locale=ru"><img src="//codeforces.org/s/23860/images/flags/24/ru.png" title="По-русски" alt="По-русски"/></a>
</div>
<div >
<a href="/enter?back=%2Fcontest%2F1567%2Fproblem%2FC%3Flocale%3Dru">Войти</a>
|
<a href="/register">Зарегистрироваться</a>
</div>
</div>
<br style="clear: both;"/>
</div>
<div class="roundbox menu-box borderTopRound borderBottomRound" style="">
<div class="menu-list-container">
<ul class="menu-list main-menu-list">
<li class=""><a href="/">Главная</a></li>
<li class=""><a href="/top">Топ</a></li>
<li class=""><a href="/catalog">Каталог</a></li>
<li class="current"><a href="/contests">Соревнования</a></li>
<li class=""><a href="/gyms">Тренировки</a></li>
<li class=""><a href="/problemset">Архив</a></li>
<li class=""><a href="/groups">Группы</a></li>
<li class=""><a href="/ratings">Рейтинг</a></li>
<li class=""><a href="/edu/courses"><span class="edu-menu-item">Edu</span></a></li>
<li class=""><a href="/apiHelp">API</a></li>
<li class=""><a href="/calendar">Календарь</a></li>
<li class=""><a href="/help">Помощь</a></li>
</ul>
<form method="post" action="/search"><input type='hidden' name='csrf_token' value='6f14a78cb6e7b51dc022360a12bc6492'/>
<input class="search" name="query" data-isPlaceholder="true" value=""/>
</form>
<br style="clear: both;"/>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("input.search").focus(function () {
if ($(this).attr("data-isPlaceholder") === "true") {
$(this).val("");
$(this).removeAttr("data-isPlaceholder");
}
});
});
</script>
<br style="height: 3em; clear: both;"/>
<div style="position: relative;">
<div id="sidebar">
<div class="roundbox sidebox borderTopRound " style="">
<table class="rtable ">
<tbody>
<tr>
<th class="left" style="width:100%;"><a style="color: black" href="/contest/1567">Codeforces Round 742 (Div. 2)</a></th>
</tr>
<tr>
<td class="left bottom" colspan="1"><span class="contest-state-phase">Закончено</span></td>
</tr>
</tbody>
</table>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Дорешивание?
<div class="top-links">
</div>
</div>
<div>
<div style="margin:1em;font-size:0.8em;">
Хотите дорешать задачи? Просто зарегистрируйтесь на дорешивание.
</div>
<div style="text-align:center;margin:1em;">
<form action="" method="post"><input type='hidden' name='csrf_token' value='6f14a78cb6e7b51dc022360a12bc6492'/>
<input type="hidden" name="action" value="registerForPractice"/>
<input type="submit" name="submit" value="Зарегистрироваться" style="padding:0 0.5em;">
</form>
</div>
</div>
</div>
<div class="roundbox sidebox ContestVirtualFrame borderTopRound " style="">
<div class="caption titled">→ Виртуальное участие <i class="sidebar-caption-icon las la-angle-down"></i>
<div class="top-links">
</div>
</div>
<div style=" "
data-page-url="/data/sidebarFrames"
>
<div style="margin:1em;font-size:0.8em;">
Виртуальное соревнование – это способ прорешать прошедшее соревнование в режиме, максимально близком к участию во время его проведения. Поддерживается только ICPC режим для виртуальных соревнований.
Если вы раньше видели эти задачи,
виртуальное соревнование не для вас – решайте эти задачи в архиве.
Если вы хотите просто дорешать задачи, виртуальное соревнование не для вас – решайте эти задачи в архиве.
Запрещается использовать чужой код, читать разборы задач и общаться по содержанию соревнования с кем-либо.
</div>
<div style="text-align:center;margin:1em;">
<form action="/contest/1567/virtual" method="get">
<input type="submit" name="submit" value="Начать виртуальное участие" style="padding:0 0.5em;">
</form>
</div>
</div>
<script>
$(function () {
$(".ContestVirtualFrame .sidebar-caption-icon").click(function() {
$(this).toggleClass("la-angle-down la-angle-right");
const $target = $(this).parent().next();
$target.toggle();
const dataPageUrl = $target.attr("data-page-url");
const collapsed = $(this).hasClass("la-angle-right");
const params = {
action: "setCollapsed",
sidebarFrameSimpleClassName: "ContestVirtualFrame",
collapsed
};
$.each($target[0].attributes, function(i, a) {
const name = a.name;
if (name.startsWith("data-extra-key-")) {
const key = a.value;
const keyIndex = parseInt(name.substring("data-extra-key-".length));
const value = $target.attr("data-extra-value-" + keyIndex);
params[key] = value;
}
});
$.post(dataPageUrl, params, function (result) {
if (result["success"] !== "true") {
Codeforces.showMessage("Не удалось сохранить состояние блока.");
}
}, "json");
return false;
});
})
</script>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Теги задачи
<div class="top-links">
</div>
</div>
<div style="padding: 0.5em;">
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Битовые маски">
битмаски
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Динамическое программирование">
дп
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Комбинаторика">
комбинаторика
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Интегрирование, диффуры и др.">
математика
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Сложность">
*1600
</span>
</div>
<div style="clear:both;text-align:right;font-size:1.1rem;">
<span title="Пожалуйста, войдите в систему" class="notice">Нет прав на редактирование</span>
</div>
</div>
</div>
<form id="addTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='6f14a78cb6e7b51dc022360a12bc6492'/>
<input name="action" type="hidden" value="addTag"/>
<input name="problemId" type="hidden" value="1099175"/>
<input name="tagName" type="hidden" value=""/>
</form>
<form id="removeTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='6f14a78cb6e7b51dc022360a12bc6492'/>
<input name="action" type="hidden" value="removeTag"/>
<input name="problemId" type="hidden" value="1099175"/>
<input name="tagName" type="hidden" value=""/>
</form>
<script type="text/javascript">
$(".tag-box img").click(function () {
var tagName = $(this).attr("value");
Codeforces.confirm("Вы уверены, что хотите удалить этот тег?", function () {
$("#removeTagForm input[name=tagName]").val(tagName);
$("#removeTagForm").submit();
}, function () {
}, "Да", "Нет");
});
$("#addTagLink").click(function () {
$(this).hide();
$("#addTagLabel").show();
return false;
});
$("#addTagSelect").change(function () {
var tagName = $(this).val();
if (tagName === "") {
$("#addTagLabel").hide();
$("#addTagLink").show();
} else {
$("#addTagForm input[name=tagName]").val(tagName);
$("#addTagForm").submit();
}
});
</script>
<style type="text/css">
#new-resource-form tr td {
padding-top: 0.5em;
}
#new-resource-form input:not([type="submit"]) {
font-size: 0.8em;
}
#new-resource-form select {
font-size: 0.8em;
}
.new-resource-error {
font-size: 0.8em;
}
.resource-locale {
color: #666;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
}
</style>
<div class="roundbox sidebox sidebar-menu borderTopRound " style="">
<div class="caption titled">→ Материалы соревнования
<div class="top-links">
</div>
</div>
<ul>
<li>
<span>
<a href="/blog/entry/94468" title="Codeforces Round #742 (Div. 2)" target="_blank">Анонс <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14291" resourceName="Codeforces Round #742 (Div. 2)"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
<li>
<span>
<a href="/blog/entry/94581" title="Codeforces Round #742 Editorial" target="_blank">Разбор задач <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14302" resourceName="Codeforces Round #742 Editorial"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
</ul>
</div></div>
<div id="pageContent" class="content-with-sidebar">
<div class="second-level-menu">
<ul class="second-level-menu-list">
<li class="current selectedLava"><a
href="/contest/1567">Задачи</a></li>
<li><a
href="/contest/1567/submit">Отослать</a></li>
<li><a
href="/contest/1567/my">Мои посылки</a></li>
<li><a
href="/contest/1567/status">Статус</a></li>
<li><a
href="/contest/1567/hacks">Взломы</a></li>
<li><a
href="/contest/1567/room/1">Комната</a></li>
<li><a
href="/contest/1567/standings">Положение</a></li>
<li><a
href="/contest/1567/customtest">Запуск</a></li>
</ul>
</div>
<style>
#facebox .content:has(.diff-popup) {
width: 90vw;
max-width: 120rem !important;
}
.testCaseMarker {
position: absolute;
font-weight: bold;
font-size: 1rem;
}
.diff-popup {
width: 90vw;
max-width: 120rem !important;
display: none;
overflow: auto;
}
.input-output-copier {
font-size: 1.2rem;
float: right;
color: #888 !important;
cursor: pointer;
border: 1px solid rgb(185, 185, 185);
padding: 3px;
margin: 1px;
line-height: 1.1rem;
text-transform: none;
}
.input-output-copier:hover {
background-color: #def;
}
.test-explanation textarea {
width: 100%;
height: 1.5em;
}
.pending-submission-message {
color: darkorange !important;
}
</style>
<script>
const OPENING_SPACE = String.fromCharCode(1001);
const CLOSING_SPACE = String.fromCharCode(1002);
const nodeToText = function (node, pre) {
let result = [];
if (node.tagName === "SCRIPT" || node.tagName === "math"
|| (node.classList && node.classList.contains("input-output-copier")))
return [];
if (node.tagName === "NOBR") {
result.push(OPENING_SPACE);
}
if (node.nodeType === Node.TEXT_NODE) {
let s = node.textContent;
if (!pre) {
s = s.replace(/\s+/g, " ");
}
if (s.length > 0) {
result.push(s);
}
}
if (pre && node.tagName === "BR") {
result.push("\n");
}
node.childNodes.forEach(function (child) {
result.push(nodeToText(child, node.tagName === "PRE").join(""));
});
if (node.tagName === "DIV"
|| node.tagName === "P"
|| node.tagName === "PRE"
|| node.tagName === "UL"
|| node.tagName === "LI"
) {
result.push("\n");
}
if (node.tagName === "NOBR") {
result.push(CLOSING_SPACE);
}
return result;
}
const isSpecial = function (c) {
return c === ',' || c === '.' || c === ';' || c === ')' || c === ' ';
}
const convertStatementToText = function(statmentNode) {
const text = nodeToText(statmentNode, false).join("").replace(/ +/g, " ").replace(/\n\n+/g, "\n\n");
let result = [];
for (let i = 0; i < text.length; i++) {
const c = text.charAt(i);
if (c === OPENING_SPACE) {
if (!((i > 0 && text.charAt(i - 1) === '(') || (result.length > 0 && result[result.length - 1] === ' '))) {
result.push('+');
}
} else if (c === CLOSING_SPACE) {
if (!(i + 1 < text.length && isSpecial(text.charAt(i + 1)))) {
result.push('-');
}
} else {
result.push(c);
}
}
return result.join("").split("\n").map(value => value.trim()).join("\n");
};
</script>
<div class="diff-popup">
</div>
<div class="problemindexholder" problemindex="C" data-uuid="ps_c3db895e6028612a7520f1366b4e2343b87cb88b">
<div style="display: none; margin:1em 0;text-align: center; position: relative;" class="alert alert-info diff-notifier">
<div>Условие задачи было недавно изменено. <a class="view-changes" href="#">Просмотреть изменения.</a></div>
<span class="diff-notifier-close" style="position: absolute; top: 0.2em; right: 0.3em; cursor: pointer; font-size: 1.4em;">×</span>
</div>
<div class="ttypography"><div class="problem-statement"><div class="header"><div class="title">C. Проблемные переносы</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Алиса только недавно изучила сложение. Однако она еще не полностью освоила концепт «переноса»: вместо того, чтобы переносить цифру в <span class="tex-font-style-it">следующий</span> разряд, она переносит ее <span class="tex-font-style-it">через один разряд</span>.</p><p>Например, <span class="tex-font-style-bf">обычный</span> способ подсчета суммы $$$2039 + 2976$$$ показан ниже: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/6cb0cb293dab7ce533fb10c4da8e27610d5181b9.png" style="max-width: 100.0%;max-height: 100.0%;" /> </center><p>Однако Алиса подсчитывает сумму следующим образом: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/98f8d3960e701645917956668cbe390f5a807d04.png" style="max-width: 100.0%;max-height: 100.0%;" /> </center><p>А именно, она делает следующее: </p><ul> <li> складывает $$$9$$$ и $$$6$$$, получая $$$15$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец «$$$0$$$ $$$9$$$»; </li><li> складывает $$$3$$$ и $$$7$$$, получая $$$10$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец «$$$2$$$ $$$2$$$»; </li><li> складывает $$$1$$$, $$$0$$$, и $$$9$$$, получая $$$10$$$, и переносит $$$1$$$ на <span class="tex-font-style-it">два разряда левее</span>, т. е. в столбец над знаком плюс; </li><li> складывает $$$1$$$, $$$2$$$ и $$$2$$$, получая $$$5$$$; </li><li> складывает $$$1$$$, получая $$$1$$$. </li></ul> Таким образом, она получает неправильный результат $$$15005$$$.<p>Алиса пришла к Бобу и рассказала, что она сложила два целых числа и получила в результате $$$n$$$. Но Боб знает, что Алиса сложила числа как умеет. Помогите Бобу посчитать количество <span class="tex-font-style-it">упорядоченных пар положительных целых чисел</span> таких, что при сложении методом Алисы получается число $$$n$$$. Обратите внимание, что пары $$$(a, b)$$$ и $$$(b, a)$$$ считаются различными при $$$a \ne b$$$.</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>Во входных данных находятся несколько наборов входных данных. В первой строке задано одно целое число $$$t$$$ ($$$1 \leq t \leq 1000$$$) — количество наборов входных данных. Далее следуют сами наборы.</p><p>В единственно строке каждого набора задано одно целое число $$$n$$$ ($$$2 \leq n \leq 10^9$$$) — число, которое получилось у Алисы.</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого набора входных данных выведите одно целое число — количество <span class="tex-font-style-it">упорядоченных</span> пар <span class="tex-font-style-bf">положительных целых чисел</span>, таких что при сложении своим методом Алиса получит в результате $$$n$$$.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5
100
12
8
2021
10000
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
9
4
7
44
99
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>В первом наборе входных данных при сложении Алисой любой из следующих пар: $$$1 + 9$$$, $$$2 + 8$$$, $$$3 + 7$$$, $$$4 + 6$$$, $$$5 + 5$$$, $$$6 + 4$$$, $$$7 + 3$$$, $$$8 + 2$$$ или $$$9 + 1$$$, она получит $$$100$$$ в результате. Изображение, показывающее как Алиса сложит $$$6 + 4$$$, показано ниже: </p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/704366959d40aa707742d72e1e660c9027ff73cc.png" style="max-width: 100.0%;max-height: 100.0%;" /> </center></div></div><p> </p></div>
</div>
<script>
$(function () {
Codeforces.addMathJaxListener(function () {
let $problem = $("div[problemindex=C]");
let uuid = $problem.attr("data-uuid");
let statementText = convertStatementToText($problem.find(".ttypography").get(0));
let previousStatementText = Codeforces.getFromStorage(uuid);
if (previousStatementText) {
if (previousStatementText !== statementText) {
$problem.find(".diff-notifier").show();
$problem.find(".diff-notifier-close").click(function() {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
$problem.find(".diff-notifier").hide();
});
$problem.find("a.view-changes").click(function() {
$.post("/data/diff", {action: "getDiff", a: previousStatementText, b: statementText}, function (result) {
if (result["success"] === "true") {
Codeforces.facebox(".diff-popup", "//codeforces.org/s/23860");
$("#facebox .diff-popup").html(result["diff"]);
}
}, "json");
});
}
} else {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
window.changedTests = new Set();
function endsWith(string, suffix) {
return string.indexOf(suffix, string.length - suffix.length) !== -1;
}
const inputFileDiv = $("div.input-file");
const inputFile = inputFileDiv.text();
const outputFileDiv = $("div.output-file");
const outputFile = outputFileDiv.text();
if (!endsWith(inputFile, "стандартный ввод")
&& !endsWith(inputFile, "standard input")) {
inputFileDiv.attr("style", "font-weight: bold");
}
if (!endsWith(outputFile, "стандартный вывод")
&& !endsWith(outputFile, "standard output")) {
outputFileDiv.attr("style", "font-weight: bold");
}
const titleDiv = $("div.header div.title");
String.prototype.replaceAll = function (search, replace) {
return this.split(search).join(replace);
};
$(".sample-test .title").each(function () {
const preId = ("id" + Math.random()).replaceAll(".", "0");
const cpyId = ("id" + Math.random()).replaceAll(".", "0");
$(this).parent().find("pre").attr("id", preId);
const $copy = $("<div title='Скопировать' data-clipboard-target='#" + preId + "' id='" + cpyId + "' class='input-output-copier'>Скопировать</div>");
$(this).append($copy);
const clipboard = new Clipboard('#' + cpyId, {
text: function (trigger) {
const pre = document.querySelector('#' + preId);
const lines = pre.querySelectorAll(".test-example-line");
return Codeforces.filterClipboardText(pre.innerText, lines.length);
}
});
const isInput = $(this).parent().hasClass("input");
clipboard.on('success', function (e) {
if (isInput) {
Codeforces.showMessage("Входные данные были скопированы в буфер обмена");
} else {
Codeforces.showMessage("Выходные данные были скопированы в буфер обмена");
}
e.clearSelection();
});
});
$(".test-form-item input").change(function () {
addPendingSubmissionMessage($($(this).closest("form")), "Вы изменили ответ, не забудьте его отправить, если вы хотите сохранить изменения");
const index = $(this).closest(".problemindexholder").attr("problemindex");
let test = "";
$(this).closest("form input").each(function () {
const test_ = $(this).attr("name");
if (test_ && test_.substring(0, 4) === "test") {
test = test_;
}
});
if (index.length > 0 && test.length > 0) {
const indexTest = index + "::" + test;
window.changedTests.add(indexTest);
}
});
$(window).on('beforeunload', function () {
if (window.changedTests.size > 0) {
return 'Dialog text here';
}
});
autosize($('.test-explanation textarea'));
$(".test-example-line").hover(function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
let top = 1E20;
let left = 1E20;
let problem = $(this).closest(".problemindexholder");
$(this).closest(".input").find("." + clazz).css("background-color", "#FFFDE7").each(function() {
top = Math.min(top, $(this).offset().top);
left = Math.min(left, $(this).offset().left);
});
let testCaseMarker = problem.find(".testCaseMarker_" + end);
if (testCaseMarker.length === 0) {
const html = "<div class=\"testCaseMarker testCaseMarker_" + end + " notice\"></div>";
problem.append($(html));
testCaseMarker = problem.find(".testCaseMarker_" + end);
}
if (testCaseMarker) {
testCaseMarker.show()
.offset({top, left: left - 20})
.text(end);
}
}
}
});
}, function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
$("." + clazz).css("background-color", "");
$(this).closest(".problemindexholder").find(".testCaseMarker_" + end).hide();
}
}
});
});
});
</script>
</div>
</div>
<br style="clear: both;"/>
<div id="footer">
<div><a href="https://codeforces.com/">Codeforces</a> (c) Copyright 2010-2023 Михаил Мирзаянов</div>
<div>Соревнования по программированию 2.0</div>
<div>Время на сервере: <span class="format-timewithseconds" data-locale="ru">07.10.2023 11:33:15</span> (i1).</div>
<div>Десктопная версия, переключиться на <a rel="nofollow" class="switchToMobile" href="?mobile=true">мобильную</a>.</div>
<div class="smaller"><a href="/privacy">Privacy Policy</a></div>
<div style="margin-top: 25px;">
При поддержке
</div>
<div style="margin-top: 8px; padding-bottom: 20px; position: relative; left: 10px;">
<a href="https://ton.org/"><img style="margin-right: 2em; width: 60px;" src="//codeforces.org/s/23860/images/ton-100x100.png" alt="TON" title="TON"/></a>
<a href="http://ifmo.ru/ru/"><img style="width: 130px;" src="//codeforces.org/s/23860/images/itmo_small_ru-logo.png" alt="ИТМО" title="ИТМО"/></a>
</div>
</div>
<script type="text/javascript">
$(function() {
$(".switchToMobile").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "true"));
return false;
});
$(".switchToDesktop").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "false"));
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
if ($(window).width() < 1600) {
$('.button-up').css('width', '30px').css('line-height', '30px').css('font-size', '20px');
}
if ($(window).width() >= 1200) {
$ (window).scroll (function () {
if ($ (this).scrollTop () > 100) {
$ ('.button-up').fadeIn();
} else {
$ ('.button-up').fadeOut();
}
});
$('.button-up').click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
$('.button-up').hover(function () {
$(this).animate({
'opacity':'1'
}).css({'background-color':'#e7ebf0','color':'#6a86a4'});
}, function () {
$(this).animate({
'opacity':'0.7'
}).css({'background':'none','color':'#d3dbe4'});;
});
}
Codeforces.focusOnError();
});
</script>
<div class="userListsFacebox" style="display:none;">
<div style="padding: 0.5em; width: 600px; max-height: 200px; overflow-y: auto">
<div class="datatable"
style="background-color: #E1E1E1; padding-bottom: 3px;">
<div class="lt"> </div>
<div class="rt"> </div>
<div class="lb"> </div>
<div class="rb"> </div>
<div style="padding: 4px 0 0 6px;font-size:1.4rem;position:relative;">
Списки пользователей
<div style="position:absolute;right:0.25em;top:0.35em;">
<span style="padding:0;position:relative;bottom:2px;" class="rowCount"></span>
<img class="closed" src="//codeforces.org/s/23860/images/icons/control.png"/>
<span class="filter" style="display:none;">
<img class="opened" src="//codeforces.org/s/23860/images/icons/control-270.png"/>
<input style="padding:0 0 0 20px;position:relative;bottom:2px;border:1px solid #aaa;height:17px;font-size:1.3rem;"/>
</span>
</div>
</div>
<div style="background-color: white;margin:0.3em 3px 0 3px;position:relative;">
<div class="ilt"> </div>
<div class="irt"> </div>
<table class="">
<thead>
<tr>
<th>Название</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
// Create new ':containsIgnoreCase' selector for search
jQuery.expr[':'].containsIgnoreCase = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
if (window.updateDatatableFilter == undefined) {
window.updateDatatableFilter = function(i) {
var parent = $(i).parent().parent().parent().parent();
$("tr.no-items", parent).remove();
$("tr", parent).hide().removeClass('visible');
var text = $(i).val();
if (text) {
$("tr" + ":containsIgnoreCase('" + text + "')", parent).show().addClass('visible');
} else {
parent.find(".rowCount").text("");
$("tr", parent).show().addClass('visible');
}
var found = false;
var visibleRowCount = 0;
$("tr", parent).each(function () {
if (!found) {
if ($(this).find("th").size() > 0) {
$(this).show().addClass('visible');
found = true;
}
}
if ($(this).hasClass('visible')) {
visibleRowCount++;
}
});
if (text) {
parent.find(".rowCount").text("Совпадений: " + (visibleRowCount - (found ? 1 : 0)));
}
if (visibleRowCount == (found ? 1 : 0)) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo($(parent).find('table'));
}
$(parent).find("tr td").removeClass("dark");
$(parent).find("tr.visible:odd td").addClass("dark");
}
$(".datatable .closed").click(function () {
var parent = $(this).parent();
$(this).hide();
$(".filter", parent).fadeIn(function () {
$("input", parent).val("").focus().css("border", "1px solid #aaa");
});
});
$(".datatable .opened").click(function () {
var parent = $(this).parent().parent();
$(".filter", parent).fadeOut(function () {
$(".closed", parent).show();
$("input", parent).val("").each(function () {
window.updateDatatableFilter(this);
});
});
});
$(".datatable .filter input").keyup(function(e) {
window.updateDatatableFilter(this);
e.preventDefault();
e.stopPropagation();
});
$(".datatable table").each(function () {
var found = false;
$("tr", this).each(function () {
if (!found && $(this).find("th").size() == 0) {
found = true;
}
});
if (!found) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo(this);
}
});
// Applies styles to datatables.
$(".datatable").each(function () {
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
$(".datatable table.tablesorter").each(function () {
$(this).bind("sortEnd", function () {
$(".datatable").each(function () {
$(this).find("th, td")
.removeClass("top").removeClass("bottom")
.removeClass("left").removeClass("right")
.removeClass("dark");
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
});
});
}
});
</script>
</div>
</div>
<script type="application/javascript">
$(function() {
$(".userListMarker").click(function() {
$.post("/data/lists", {action: "findTouched"}, function(json) {
Codeforces.facebox(".userListsFacebox");
var tbody = $("#facebox tbody");
tbody.empty();
for (var i in json) {
tbody.append(
$("<tr></tr>").append(
$("<td></td>").attr("data-readKey", json[i].readKey).text(json[i].name)
)
);
}
Codeforces.updateDatatables();
tbody.find("td").css("cursor", "pointer").click(function() {
document.location = Codeforces.updateUrlParameter(document.location.href, "list", $(this).attr("data-readKey"));
});
}, "json");
});
});
</script>
</div>
<script type="application/javascript">
if ('serviceWorker' in navigator && 'fetch' in window && 'caches' in window) {
navigator.serviceWorker.register('/service-worker-23860.js')
.then(function (registration) {
console.log('Service worker registered: ', registration);
})
.catch(function (error) {
console.log('Registration failed: ', error);
});
}
</script>
<script>(function(){var js = "window['__CF$cv$params']={r:'8124cc577f4a9d6d',t:'MTY5NjY2NzU5NS41NTUwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script></body>
</html>
| ["\u0411\u0438\u0442\u043e\u0432\u044b\u0435 \u043c\u0430\u0441\u043a\u0438", "\u0414\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "\u041a\u043e\u043c\u0431\u0438\u043d\u0430\u0442\u043e\u0440\u0438\u043a\u0430", "\u0418\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u0434\u0438\u0444\u0444\u0443\u0440\u044b \u0438 \u0434\u0440.", "\u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c"] | ["\u0431\u0438\u0442\u043c\u0430\u0441\u043a\u0438", "\u0434\u043f", "\u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0442\u043e\u0440\u0438\u043a\u0430", "\u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430", "*1600"] | ||
1567D | 1567 | D | ru | D. Своеобразная система счисления | <div class="problem-statement"><div class="header"><div class="title">D. Своеобразная система счисления</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Боб выписал на доске $$$n$$$ положительных целых чисел в десятичной системе счисления с суммой $$$s$$$ (то есть по <a href="https://ru.wikipedia.org/wiki/Позиционная_система_счисления#Определения">основанию</a> $$$10$$$). Алиса увидела числа на доске, но по ошибке интерпретировала числа как записанные по основанию $$$11$$$ и сложила их (по основанию $$$11$$$).</p><p>Какие числа должен был написать Боб, чтобы сумма, полученная Алисой, была максимально возможной?</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>Во входных данных находятся несколько наборов входных данных. В первой строке задано одно целое число $$$t$$$ ($$$1 \leq t \leq 100$$$) — количество наборов входных данных. Далее следуют сами наборы.</p><p>В единственной строке каждого набора заданы два целых числа $$$s$$$ и $$$n$$$ ($$$1 \leq s \leq 10^9$$$; $$$1 \leq n \leq \min(100, s)$$$) — сумма и количество чисел на доске, соответственно. Числа $$$s$$$ и $$$n$$$ заданы в десятичной системе счисления (по основанию $$$10$$$).</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого набора данных выведите $$$n$$$ положительных целых чисел — числа, которые должен написать Боб, чтобы полученная Алисой сумма была максимально возможной. Если есть несколько ответов, выведите любой из них.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
6
97 2
17 1
111 4
100 2
10 9
999999 3
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
70 27
17
3 4 100 4
10 90
1 1 2 1 1 1 1 1 1
999900 90 9
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>В первом наборе, $$$70_{10} + 27_{10} = 97_{10}$$$, а у Алисы получится сумма $$$$$$70_{11} + 27_{11} = 97_{11} = 9 \cdot 11 + 7 = 106_{10}.$$$$$$ (Здесь $$$x_b$$$ обозначает число $$$x$$$ по основанию $$$b$$$.) Можно показать, что для Алисы невозможно получить сумму больше, чем $$$106_{10}$$$.</p><p>Во втором наборе, Боб выписывает только одно число, поэтому он может выписать только $$$17$$$.</p><p>В третьем примере, $$$3_{10} + 4_{10} + 100_{10} + 4_{10} = 111_{10}$$$, а у Алисы получится сумма $$$$$$3_{11} + 4_{11} + 100_{11} + 4_{11} = 110_{11} = 1 \cdot 11^2 + 1 \cdot 11 = 132_{10}.$$$$$$ Можно показать, что для Алисы невозможно получить сумму более $$$132_{10}$$$.</p></div></div> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="X-Csrf-Token" content="bbdda9e4cbaacd6518fd92d4f850844e"/>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=0.01"/>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery-1.8.3.js"></script>
<script type="application/javascript">
window.locale = "ru";
window.standaloneContest = false;
function adjustViewport() {
var screenWidthPx = Math.min($(window).width(), window.screen.width);
var siteWidthPx = 1100; // min width of site
var ratio = Math.min(screenWidthPx / siteWidthPx, 1.0);
var viewport = "width=device-width, initial-scale=" + ratio;
$('#viewport').attr('content', viewport);
var style = $('<style>html * { max-height: 1000000px; }</style>');
$('html > head').append(style);
}
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
adjustViewport();
}
/* Protection against trailing dot in domain. */
let hostLength = window.location.host.length;
if (hostLength > 1 && window.location.host[hostLength - 1] === '.') {
window.location = window.location.protocol + "//" + window.location.host.substring(0, hostLength - 1);
}
</script>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="profileName" content="i1">
<meta name="google-site-verification" content="OTd2dN5x4nS4OPknPI9JFg36fKxjqY0i1PSfFPv_J90"/>
<meta property="fb:admins" content="100001352546622" />
<meta property="og:image" content="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<link rel="image_src" href="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<meta property="og:title" content="Задача - D - Codeforces"/>
<meta property="og:description" content=""/>
<meta property="og:site_name" content="Codeforces"/>
<meta name="cc" content="e019f64ee12ed74315f46e5ea85bf33cee95598f"/>
<meta name="utc_offset" content="+03:00"/>
<meta name="verify-reformal" content="f56f99fd7e087fb6ccb48ef2" />
<title>Задача - D - Codeforces</title>
<meta name="description" content="Codeforces. Соревнования и олимпиады по информатике и программированию, сообщество программистов" />
<meta name="keywords" content="программирование информатика контест олимпиада алгоритмы c++ java графы vkcup" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/font-awesome.min.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/line-awesome.min.css" type="text/css" charset="utf-8" />
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="//codeforces.org/s/23860/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="//codeforces.org/s/23860/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="//codeforces.org/s/23860/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="//codeforces.org/s/23860/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="//codeforces.org/s/23860/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="//codeforces.org/s/23860/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="//codeforces.org/s/23860/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="//codeforces.org/s/23860/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="//codeforces.org/s/23860/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="//codeforces.org/s/23860/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="//codeforces.org/s/23860/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="//codeforces.org/s/23860/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="//codeforces.org/s/23860/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="//codeforces.org/s/23860/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!--CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/css/prettify.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/clear.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/ttypography.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/problem-statement.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/second-level-menu.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/roundbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/datatable.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/table-form.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/topic.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.jgrowl.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/facebox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.wysiwyg.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.autocomplete.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/codeforces.datepick.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/colorbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.drafts.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/community.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/sidebar-menu.css" type="text/css" charset="utf-8" />
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$$$','$$$']], displayMath: [['$$$$$$','$$$$$$']]}
});
MathJax.Hub.Register.StartupHook("End", function () {
Codeforces.runMathJaxListeners();
});
</script>
<script type="text/javascript" async
src="https://mathjax.codeforces.org/MathJax.js?config=TeX-AMS_HTML-full"
>
</script>
<!-- /MathJax -->
<script type="text/javascript" src="//codeforces.org/s/23860/js/prettify/prettify.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/moment-with-locales.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/pushstream.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.easing.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.jgrowl.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.swipe.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.hotkeys.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/facebox.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.colorpicker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.table.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.image.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.link.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.autocomplete.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ie6blocker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ba-bbq.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.drafts.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/clipboard.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/autosize.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/sjcl.js"></script>
<script type="text/javascript" src="/scripts/a3c2074ccb6f4b67a3c2bb62db02053f/ru/codeforces-options.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/codeforces.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/EventCatcher.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/preparedVerdictFormats-ru.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/confetti.min.js"></script>
<!--/CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/skins/markitup/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/sets/markdown/style.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/sets/markdown/set.js"></script>
<!--[if IE]>
<style>
#sidebar {
padding-left: 1em;
margin: 1em 1em 1em 0;
}
</style>
<![endif]-->
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick-ru.js"></script>
</head>
<body class=" "><span style='display:none;' class='csrf-token' data-csrf='bbdda9e4cbaacd6518fd92d4f850844e'> </span>
<!-- .notificationTextCleaner used in Codeforces.showAnnouncements() -->
<div class="notificationTextCleaner" style="font-size: 0"></div>
<div class="button-up" style="display: none; opacity: 0.7; width: 50px; height:100%; position: fixed; left: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 3.0rem;"><i class="icon-circle-arrow-up"></i></div>
<div class="verdictPrototypeDiv" style="display: none;"></div>
<!-- Codeforces JavaScripts. -->
<script type="text/javascript">
String.prototype.hashCode = function() {
var hash = 0, i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
var queryMobile = Codeforces.queryString.mobile;
if (queryMobile === "true" || queryMobile === "false") {
Codeforces.putToStorage("useMobile", queryMobile === "true");
} else {
var useMobile = Codeforces.getFromStorage("useMobile");
if (useMobile === true || useMobile === false) {
if (useMobile != false) {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", useMobile));
}
}
}
</script>
<script type="text/javascript">
if (window.parent.frames.length > 0) {
window.stop();
}
</script>
<script type="text/javascript">
$(document).ready(function () {
(function () {
jQuery.expr[':'].containsCI = function(elem, index, match) {
return !match || !match.length || match.length < 4 || !match[3] || (
elem.textContent || elem.innerText || jQuery(elem).text() || ''
).toLowerCase().indexOf(match[3].toLowerCase()) >= 0;
}
}(jQuery));
$.ajaxPrefilter(function(options, originalOptions, xhr) {
var csrf = Codeforces.getCsrfToken();
if (csrf) {
var data = originalOptions.data;
if (originalOptions.data !== undefined) {
if (Object.prototype.toString.call(originalOptions.data) === '[object String]') {
data = $.deparam(originalOptions.data);
}
} else {
data = {};
}
options.data = $.param($.extend(data, { csrf_token: csrf }));
}
});
window.getCodeforcesServerTime = function(callback) {
$.post("/data/time", {}, callback, "json");
}
window.updateTypography = function () {
$("div.ttypography code").addClass("tt");
$("div.ttypography pre>code").addClass("prettyprint").removeClass("tt");
$("div.ttypography table").addClass("bordertable");
prettyPrint();
}
$.ajaxSetup({ scriptCharset: "utf-8" ,contentType: "application/x-www-form-urlencoded; charset=UTF-8", headers: {
'X-Csrf-Token': Codeforces.getCsrfToken()
}});
window.updateTypography();
Codeforces.signForms();
setTimeout(function() {
$(".second-level-menu-list").lavaLamp({
fx: "backout",
speed: 700
});
}, 100);
Codeforces.countdown();
$("a[rel='photobox']").colorbox();
function showAnnouncements(json) {
//info("j=" + JSON.stringify(json));
if (json.t != "a") {
return;
}
setTimeout(function() {
Codeforces.showAnnouncements(json.d, "ru");
}, Math.random() * 500);
}
function showEventCatcherUserMessage(json) {
if (json.t == "s") {
var points = json.d[5];
var passedTestCount = json.d[7];
var judgedTestCount = json.d[8];
var verdict = preparedVerdictFormats[json.d[12]];
var verdictPrototypeDiv = $(".verdictPrototypeDiv");
verdictPrototypeDiv.html(verdict);
if (judgedTestCount != null && judgedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-judged").text(judgedTestCount);
}
if (passedTestCount != null && passedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-passed").text(passedTestCount);
}
if (points != null && points != undefined) {
verdictPrototypeDiv.find(".verdict-format-points").text(points);
}
Codeforces.showMessage(verdictPrototypeDiv.text());
}
}
$(".clickable-title").each(function() {
var title = $(this).attr("data-title");
if (title) {
var tmp = document.createElement("DIV");
tmp.innerHTML = title;
$(this).attr("title", tmp.textContent || tmp.innerText || "");
}
});
$(".clickable-title").click(function() {
var title = $(this).attr("data-title");
if (title) {
Codeforces.alert(title);
} else {
Codeforces.alert($(this).attr("title"));
}
}).css("position", "relative").css("bottom", "3px");
Codeforces.showDelayedMessage();
Codeforces.reformatTimes();
//Codeforces.initializePubSub();
if (window.codeforcesOptions.subscribeServerUrl) {
window.eventCatcher = new EventCatcher(
window.codeforcesOptions.subscribeServerUrl,
[
Codeforces.getGlobalChannel(),
Codeforces.getUserChannel(),
Codeforces.getUserShowMessageChannel(),
Codeforces.getContestChannel(),
Codeforces.getParticipantChannel(),
Codeforces.getTalkChannel()
]
);
if (Codeforces.getParticipantChannel()) {
window.eventCatcher.subscribe(Codeforces.getParticipantChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getContestChannel()) {
window.eventCatcher.subscribe(Codeforces.getContestChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getGlobalChannel()) {
window.eventCatcher.subscribe(Codeforces.getGlobalChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserShowMessageChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserShowMessageChannel(), function(json) {
showEventCatcherUserMessage(json);
});
}
}
Codeforces.setupContestTimes("/data/contests");
Codeforces.setupSpoilers();
Codeforces.setupTutorials("/data/problemTutorial");
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-743380-5']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = (document.location.protocol == 'https:' ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div id="body">
<div class="side-bell" style="visibility: hidden; display: none; opacity: 0.7; width: 40px; position: fixed; right: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 1.5rem;">
<span class="icon-stack" style="width: 100%;">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-bell-alt icon-light"></i>
</span>
<br/>
<span class="side-bell__count" style="position: relative; top: -10px;"></span>
</div>
<div id="header" style="position: relative;">
<div style="float:left; max-height: 60px;">
<a href="/"><img height="65" style="height: 65px;" alt="Codeforces" title="Codeforces" src="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png"/></a>
</div>
<div class="lang-chooser">
<div style="text-align: right;">
<a href="?locale=en"><img src="//codeforces.org/s/23860/images/flags/24/gb.png" title="In English" alt="In English"/></a>
<a href="?locale=ru"><img src="//codeforces.org/s/23860/images/flags/24/ru.png" title="По-русски" alt="По-русски"/></a>
</div>
<div >
<a href="/enter?back=%2Fcontest%2F1567%2Fproblem%2FD%3Flocale%3Dru">Войти</a>
|
<a href="/register">Зарегистрироваться</a>
</div>
</div>
<br style="clear: both;"/>
</div>
<div class="roundbox menu-box borderTopRound borderBottomRound" style="">
<div class="menu-list-container">
<ul class="menu-list main-menu-list">
<li class=""><a href="/">Главная</a></li>
<li class=""><a href="/top">Топ</a></li>
<li class=""><a href="/catalog">Каталог</a></li>
<li class="current"><a href="/contests">Соревнования</a></li>
<li class=""><a href="/gyms">Тренировки</a></li>
<li class=""><a href="/problemset">Архив</a></li>
<li class=""><a href="/groups">Группы</a></li>
<li class=""><a href="/ratings">Рейтинг</a></li>
<li class=""><a href="/edu/courses"><span class="edu-menu-item">Edu</span></a></li>
<li class=""><a href="/apiHelp">API</a></li>
<li class=""><a href="/calendar">Календарь</a></li>
<li class=""><a href="/help">Помощь</a></li>
</ul>
<form method="post" action="/search"><input type='hidden' name='csrf_token' value='bbdda9e4cbaacd6518fd92d4f850844e'/>
<input class="search" name="query" data-isPlaceholder="true" value=""/>
</form>
<br style="clear: both;"/>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("input.search").focus(function () {
if ($(this).attr("data-isPlaceholder") === "true") {
$(this).val("");
$(this).removeAttr("data-isPlaceholder");
}
});
});
</script>
<br style="height: 3em; clear: both;"/>
<div style="position: relative;">
<div id="sidebar">
<div class="roundbox sidebox borderTopRound " style="">
<table class="rtable ">
<tbody>
<tr>
<th class="left" style="width:100%;"><a style="color: black" href="/contest/1567">Codeforces Round 742 (Div. 2)</a></th>
</tr>
<tr>
<td class="left bottom" colspan="1"><span class="contest-state-phase">Закончено</span></td>
</tr>
</tbody>
</table>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Дорешивание?
<div class="top-links">
</div>
</div>
<div>
<div style="margin:1em;font-size:0.8em;">
Хотите дорешать задачи? Просто зарегистрируйтесь на дорешивание.
</div>
<div style="text-align:center;margin:1em;">
<form action="" method="post"><input type='hidden' name='csrf_token' value='bbdda9e4cbaacd6518fd92d4f850844e'/>
<input type="hidden" name="action" value="registerForPractice"/>
<input type="submit" name="submit" value="Зарегистрироваться" style="padding:0 0.5em;">
</form>
</div>
</div>
</div>
<div class="roundbox sidebox ContestVirtualFrame borderTopRound " style="">
<div class="caption titled">→ Виртуальное участие <i class="sidebar-caption-icon las la-angle-down"></i>
<div class="top-links">
</div>
</div>
<div style=" "
data-page-url="/data/sidebarFrames"
>
<div style="margin:1em;font-size:0.8em;">
Виртуальное соревнование – это способ прорешать прошедшее соревнование в режиме, максимально близком к участию во время его проведения. Поддерживается только ICPC режим для виртуальных соревнований.
Если вы раньше видели эти задачи,
виртуальное соревнование не для вас – решайте эти задачи в архиве.
Если вы хотите просто дорешать задачи, виртуальное соревнование не для вас – решайте эти задачи в архиве.
Запрещается использовать чужой код, читать разборы задач и общаться по содержанию соревнования с кем-либо.
</div>
<div style="text-align:center;margin:1em;">
<form action="/contest/1567/virtual" method="get">
<input type="submit" name="submit" value="Начать виртуальное участие" style="padding:0 0.5em;">
</form>
</div>
</div>
<script>
$(function () {
$(".ContestVirtualFrame .sidebar-caption-icon").click(function() {
$(this).toggleClass("la-angle-down la-angle-right");
const $target = $(this).parent().next();
$target.toggle();
const dataPageUrl = $target.attr("data-page-url");
const collapsed = $(this).hasClass("la-angle-right");
const params = {
action: "setCollapsed",
sidebarFrameSimpleClassName: "ContestVirtualFrame",
collapsed
};
$.each($target[0].attributes, function(i, a) {
const name = a.name;
if (name.startsWith("data-extra-key-")) {
const key = a.value;
const keyIndex = parseInt(name.substring("data-extra-key-".length));
const value = $target.attr("data-extra-value-" + keyIndex);
params[key] = value;
}
});
$.post(dataPageUrl, params, function (result) {
if (result["success"] !== "true") {
Codeforces.showMessage("Не удалось сохранить состояние блока.");
}
}, "json");
return false;
});
})
</script>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Теги задачи
<div class="top-links">
</div>
</div>
<div style="padding: 0.5em;">
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Жадные алгоритмы">
жадные алгоритмы
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Конструктивные алгоритмы">
конструктив
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Интегрирование, диффуры и др.">
математика
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Реализация, техника программирования, симуляция">
реализация
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Сложность">
*2000
</span>
</div>
<div style="clear:both;text-align:right;font-size:1.1rem;">
<span title="Пожалуйста, войдите в систему" class="notice">Нет прав на редактирование</span>
</div>
</div>
</div>
<form id="addTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='bbdda9e4cbaacd6518fd92d4f850844e'/>
<input name="action" type="hidden" value="addTag"/>
<input name="problemId" type="hidden" value="1099176"/>
<input name="tagName" type="hidden" value=""/>
</form>
<form id="removeTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='bbdda9e4cbaacd6518fd92d4f850844e'/>
<input name="action" type="hidden" value="removeTag"/>
<input name="problemId" type="hidden" value="1099176"/>
<input name="tagName" type="hidden" value=""/>
</form>
<script type="text/javascript">
$(".tag-box img").click(function () {
var tagName = $(this).attr("value");
Codeforces.confirm("Вы уверены, что хотите удалить этот тег?", function () {
$("#removeTagForm input[name=tagName]").val(tagName);
$("#removeTagForm").submit();
}, function () {
}, "Да", "Нет");
});
$("#addTagLink").click(function () {
$(this).hide();
$("#addTagLabel").show();
return false;
});
$("#addTagSelect").change(function () {
var tagName = $(this).val();
if (tagName === "") {
$("#addTagLabel").hide();
$("#addTagLink").show();
} else {
$("#addTagForm input[name=tagName]").val(tagName);
$("#addTagForm").submit();
}
});
</script>
<style type="text/css">
#new-resource-form tr td {
padding-top: 0.5em;
}
#new-resource-form input:not([type="submit"]) {
font-size: 0.8em;
}
#new-resource-form select {
font-size: 0.8em;
}
.new-resource-error {
font-size: 0.8em;
}
.resource-locale {
color: #666;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
}
</style>
<div class="roundbox sidebox sidebar-menu borderTopRound " style="">
<div class="caption titled">→ Материалы соревнования
<div class="top-links">
</div>
</div>
<ul>
<li>
<span>
<a href="/blog/entry/94468" title="Codeforces Round #742 (Div. 2)" target="_blank">Анонс <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14291" resourceName="Codeforces Round #742 (Div. 2)"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
<li>
<span>
<a href="/blog/entry/94581" title="Codeforces Round #742 Editorial" target="_blank">Разбор задач <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14302" resourceName="Codeforces Round #742 Editorial"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
</ul>
</div></div>
<div id="pageContent" class="content-with-sidebar">
<div class="second-level-menu">
<ul class="second-level-menu-list">
<li class="current selectedLava"><a
href="/contest/1567">Задачи</a></li>
<li><a
href="/contest/1567/submit">Отослать</a></li>
<li><a
href="/contest/1567/my">Мои посылки</a></li>
<li><a
href="/contest/1567/status">Статус</a></li>
<li><a
href="/contest/1567/hacks">Взломы</a></li>
<li><a
href="/contest/1567/room/1">Комната</a></li>
<li><a
href="/contest/1567/standings">Положение</a></li>
<li><a
href="/contest/1567/customtest">Запуск</a></li>
</ul>
</div>
<style>
#facebox .content:has(.diff-popup) {
width: 90vw;
max-width: 120rem !important;
}
.testCaseMarker {
position: absolute;
font-weight: bold;
font-size: 1rem;
}
.diff-popup {
width: 90vw;
max-width: 120rem !important;
display: none;
overflow: auto;
}
.input-output-copier {
font-size: 1.2rem;
float: right;
color: #888 !important;
cursor: pointer;
border: 1px solid rgb(185, 185, 185);
padding: 3px;
margin: 1px;
line-height: 1.1rem;
text-transform: none;
}
.input-output-copier:hover {
background-color: #def;
}
.test-explanation textarea {
width: 100%;
height: 1.5em;
}
.pending-submission-message {
color: darkorange !important;
}
</style>
<script>
const OPENING_SPACE = String.fromCharCode(1001);
const CLOSING_SPACE = String.fromCharCode(1002);
const nodeToText = function (node, pre) {
let result = [];
if (node.tagName === "SCRIPT" || node.tagName === "math"
|| (node.classList && node.classList.contains("input-output-copier")))
return [];
if (node.tagName === "NOBR") {
result.push(OPENING_SPACE);
}
if (node.nodeType === Node.TEXT_NODE) {
let s = node.textContent;
if (!pre) {
s = s.replace(/\s+/g, " ");
}
if (s.length > 0) {
result.push(s);
}
}
if (pre && node.tagName === "BR") {
result.push("\n");
}
node.childNodes.forEach(function (child) {
result.push(nodeToText(child, node.tagName === "PRE").join(""));
});
if (node.tagName === "DIV"
|| node.tagName === "P"
|| node.tagName === "PRE"
|| node.tagName === "UL"
|| node.tagName === "LI"
) {
result.push("\n");
}
if (node.tagName === "NOBR") {
result.push(CLOSING_SPACE);
}
return result;
}
const isSpecial = function (c) {
return c === ',' || c === '.' || c === ';' || c === ')' || c === ' ';
}
const convertStatementToText = function(statmentNode) {
const text = nodeToText(statmentNode, false).join("").replace(/ +/g, " ").replace(/\n\n+/g, "\n\n");
let result = [];
for (let i = 0; i < text.length; i++) {
const c = text.charAt(i);
if (c === OPENING_SPACE) {
if (!((i > 0 && text.charAt(i - 1) === '(') || (result.length > 0 && result[result.length - 1] === ' '))) {
result.push('+');
}
} else if (c === CLOSING_SPACE) {
if (!(i + 1 < text.length && isSpecial(text.charAt(i + 1)))) {
result.push('-');
}
} else {
result.push(c);
}
}
return result.join("").split("\n").map(value => value.trim()).join("\n");
};
</script>
<div class="diff-popup">
</div>
<div class="problemindexholder" problemindex="D" data-uuid="ps_c1419cea9c6483b8a715810d14fa024eee264518">
<div style="display: none; margin:1em 0;text-align: center; position: relative;" class="alert alert-info diff-notifier">
<div>Условие задачи было недавно изменено. <a class="view-changes" href="#">Просмотреть изменения.</a></div>
<span class="diff-notifier-close" style="position: absolute; top: 0.2em; right: 0.3em; cursor: pointer; font-size: 1.4em;">×</span>
</div>
<div class="ttypography"><div class="problem-statement"><div class="header"><div class="title">D. Своеобразная система счисления</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Боб выписал на доске $$$n$$$ положительных целых чисел в десятичной системе счисления с суммой $$$s$$$ (то есть по <a href="https://ru.wikipedia.org/wiki/Позиционная_система_счисления#Определения">основанию</a> $$$10$$$). Алиса увидела числа на доске, но по ошибке интерпретировала числа как записанные по основанию $$$11$$$ и сложила их (по основанию $$$11$$$).</p><p>Какие числа должен был написать Боб, чтобы сумма, полученная Алисой, была максимально возможной?</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>Во входных данных находятся несколько наборов входных данных. В первой строке задано одно целое число $$$t$$$ ($$$1 \leq t \leq 100$$$) — количество наборов входных данных. Далее следуют сами наборы.</p><p>В единственной строке каждого набора заданы два целых числа $$$s$$$ и $$$n$$$ ($$$1 \leq s \leq 10^9$$$; $$$1 \leq n \leq \min(100, s)$$$) — сумма и количество чисел на доске, соответственно. Числа $$$s$$$ и $$$n$$$ заданы в десятичной системе счисления (по основанию $$$10$$$).</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого набора данных выведите $$$n$$$ положительных целых чисел — числа, которые должен написать Боб, чтобы полученная Алисой сумма была максимально возможной. Если есть несколько ответов, выведите любой из них.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
6
97 2
17 1
111 4
100 2
10 9
999999 3
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
70 27
17
3 4 100 4
10 90
1 1 2 1 1 1 1 1 1
999900 90 9
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>В первом наборе, $$$70_{10} + 27_{10} = 97_{10}$$$, а у Алисы получится сумма $$$$$$70_{11} + 27_{11} = 97_{11} = 9 \cdot 11 + 7 = 106_{10}.$$$$$$ (Здесь $$$x_b$$$ обозначает число $$$x$$$ по основанию $$$b$$$.) Можно показать, что для Алисы невозможно получить сумму больше, чем $$$106_{10}$$$.</p><p>Во втором наборе, Боб выписывает только одно число, поэтому он может выписать только $$$17$$$.</p><p>В третьем примере, $$$3_{10} + 4_{10} + 100_{10} + 4_{10} = 111_{10}$$$, а у Алисы получится сумма $$$$$$3_{11} + 4_{11} + 100_{11} + 4_{11} = 110_{11} = 1 \cdot 11^2 + 1 \cdot 11 = 132_{10}.$$$$$$ Можно показать, что для Алисы невозможно получить сумму более $$$132_{10}$$$.</p></div></div><p> </p></div>
</div>
<script>
$(function () {
Codeforces.addMathJaxListener(function () {
let $problem = $("div[problemindex=D]");
let uuid = $problem.attr("data-uuid");
let statementText = convertStatementToText($problem.find(".ttypography").get(0));
let previousStatementText = Codeforces.getFromStorage(uuid);
if (previousStatementText) {
if (previousStatementText !== statementText) {
$problem.find(".diff-notifier").show();
$problem.find(".diff-notifier-close").click(function() {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
$problem.find(".diff-notifier").hide();
});
$problem.find("a.view-changes").click(function() {
$.post("/data/diff", {action: "getDiff", a: previousStatementText, b: statementText}, function (result) {
if (result["success"] === "true") {
Codeforces.facebox(".diff-popup", "//codeforces.org/s/23860");
$("#facebox .diff-popup").html(result["diff"]);
}
}, "json");
});
}
} else {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
window.changedTests = new Set();
function endsWith(string, suffix) {
return string.indexOf(suffix, string.length - suffix.length) !== -1;
}
const inputFileDiv = $("div.input-file");
const inputFile = inputFileDiv.text();
const outputFileDiv = $("div.output-file");
const outputFile = outputFileDiv.text();
if (!endsWith(inputFile, "стандартный ввод")
&& !endsWith(inputFile, "standard input")) {
inputFileDiv.attr("style", "font-weight: bold");
}
if (!endsWith(outputFile, "стандартный вывод")
&& !endsWith(outputFile, "standard output")) {
outputFileDiv.attr("style", "font-weight: bold");
}
const titleDiv = $("div.header div.title");
String.prototype.replaceAll = function (search, replace) {
return this.split(search).join(replace);
};
$(".sample-test .title").each(function () {
const preId = ("id" + Math.random()).replaceAll(".", "0");
const cpyId = ("id" + Math.random()).replaceAll(".", "0");
$(this).parent().find("pre").attr("id", preId);
const $copy = $("<div title='Скопировать' data-clipboard-target='#" + preId + "' id='" + cpyId + "' class='input-output-copier'>Скопировать</div>");
$(this).append($copy);
const clipboard = new Clipboard('#' + cpyId, {
text: function (trigger) {
const pre = document.querySelector('#' + preId);
const lines = pre.querySelectorAll(".test-example-line");
return Codeforces.filterClipboardText(pre.innerText, lines.length);
}
});
const isInput = $(this).parent().hasClass("input");
clipboard.on('success', function (e) {
if (isInput) {
Codeforces.showMessage("Входные данные были скопированы в буфер обмена");
} else {
Codeforces.showMessage("Выходные данные были скопированы в буфер обмена");
}
e.clearSelection();
});
});
$(".test-form-item input").change(function () {
addPendingSubmissionMessage($($(this).closest("form")), "Вы изменили ответ, не забудьте его отправить, если вы хотите сохранить изменения");
const index = $(this).closest(".problemindexholder").attr("problemindex");
let test = "";
$(this).closest("form input").each(function () {
const test_ = $(this).attr("name");
if (test_ && test_.substring(0, 4) === "test") {
test = test_;
}
});
if (index.length > 0 && test.length > 0) {
const indexTest = index + "::" + test;
window.changedTests.add(indexTest);
}
});
$(window).on('beforeunload', function () {
if (window.changedTests.size > 0) {
return 'Dialog text here';
}
});
autosize($('.test-explanation textarea'));
$(".test-example-line").hover(function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
let top = 1E20;
let left = 1E20;
let problem = $(this).closest(".problemindexholder");
$(this).closest(".input").find("." + clazz).css("background-color", "#FFFDE7").each(function() {
top = Math.min(top, $(this).offset().top);
left = Math.min(left, $(this).offset().left);
});
let testCaseMarker = problem.find(".testCaseMarker_" + end);
if (testCaseMarker.length === 0) {
const html = "<div class=\"testCaseMarker testCaseMarker_" + end + " notice\"></div>";
problem.append($(html));
testCaseMarker = problem.find(".testCaseMarker_" + end);
}
if (testCaseMarker) {
testCaseMarker.show()
.offset({top, left: left - 20})
.text(end);
}
}
}
});
}, function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
$("." + clazz).css("background-color", "");
$(this).closest(".problemindexholder").find(".testCaseMarker_" + end).hide();
}
}
});
});
});
</script>
</div>
</div>
<br style="clear: both;"/>
<div id="footer">
<div><a href="https://codeforces.com/">Codeforces</a> (c) Copyright 2010-2023 Михаил Мирзаянов</div>
<div>Соревнования по программированию 2.0</div>
<div>Время на сервере: <span class="format-timewithseconds" data-locale="ru">07.10.2023 11:33:16</span> (i1).</div>
<div>Десктопная версия, переключиться на <a rel="nofollow" class="switchToMobile" href="?mobile=true">мобильную</a>.</div>
<div class="smaller"><a href="/privacy">Privacy Policy</a></div>
<div style="margin-top: 25px;">
При поддержке
</div>
<div style="margin-top: 8px; padding-bottom: 20px; position: relative; left: 10px;">
<a href="https://ton.org/"><img style="margin-right: 2em; width: 60px;" src="//codeforces.org/s/23860/images/ton-100x100.png" alt="TON" title="TON"/></a>
<a href="http://ifmo.ru/ru/"><img style="width: 130px;" src="//codeforces.org/s/23860/images/itmo_small_ru-logo.png" alt="ИТМО" title="ИТМО"/></a>
</div>
</div>
<script type="text/javascript">
$(function() {
$(".switchToMobile").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "true"));
return false;
});
$(".switchToDesktop").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "false"));
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
if ($(window).width() < 1600) {
$('.button-up').css('width', '30px').css('line-height', '30px').css('font-size', '20px');
}
if ($(window).width() >= 1200) {
$ (window).scroll (function () {
if ($ (this).scrollTop () > 100) {
$ ('.button-up').fadeIn();
} else {
$ ('.button-up').fadeOut();
}
});
$('.button-up').click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
$('.button-up').hover(function () {
$(this).animate({
'opacity':'1'
}).css({'background-color':'#e7ebf0','color':'#6a86a4'});
}, function () {
$(this).animate({
'opacity':'0.7'
}).css({'background':'none','color':'#d3dbe4'});;
});
}
Codeforces.focusOnError();
});
</script>
<div class="userListsFacebox" style="display:none;">
<div style="padding: 0.5em; width: 600px; max-height: 200px; overflow-y: auto">
<div class="datatable"
style="background-color: #E1E1E1; padding-bottom: 3px;">
<div class="lt"> </div>
<div class="rt"> </div>
<div class="lb"> </div>
<div class="rb"> </div>
<div style="padding: 4px 0 0 6px;font-size:1.4rem;position:relative;">
Списки пользователей
<div style="position:absolute;right:0.25em;top:0.35em;">
<span style="padding:0;position:relative;bottom:2px;" class="rowCount"></span>
<img class="closed" src="//codeforces.org/s/23860/images/icons/control.png"/>
<span class="filter" style="display:none;">
<img class="opened" src="//codeforces.org/s/23860/images/icons/control-270.png"/>
<input style="padding:0 0 0 20px;position:relative;bottom:2px;border:1px solid #aaa;height:17px;font-size:1.3rem;"/>
</span>
</div>
</div>
<div style="background-color: white;margin:0.3em 3px 0 3px;position:relative;">
<div class="ilt"> </div>
<div class="irt"> </div>
<table class="">
<thead>
<tr>
<th>Название</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
// Create new ':containsIgnoreCase' selector for search
jQuery.expr[':'].containsIgnoreCase = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
if (window.updateDatatableFilter == undefined) {
window.updateDatatableFilter = function(i) {
var parent = $(i).parent().parent().parent().parent();
$("tr.no-items", parent).remove();
$("tr", parent).hide().removeClass('visible');
var text = $(i).val();
if (text) {
$("tr" + ":containsIgnoreCase('" + text + "')", parent).show().addClass('visible');
} else {
parent.find(".rowCount").text("");
$("tr", parent).show().addClass('visible');
}
var found = false;
var visibleRowCount = 0;
$("tr", parent).each(function () {
if (!found) {
if ($(this).find("th").size() > 0) {
$(this).show().addClass('visible');
found = true;
}
}
if ($(this).hasClass('visible')) {
visibleRowCount++;
}
});
if (text) {
parent.find(".rowCount").text("Совпадений: " + (visibleRowCount - (found ? 1 : 0)));
}
if (visibleRowCount == (found ? 1 : 0)) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo($(parent).find('table'));
}
$(parent).find("tr td").removeClass("dark");
$(parent).find("tr.visible:odd td").addClass("dark");
}
$(".datatable .closed").click(function () {
var parent = $(this).parent();
$(this).hide();
$(".filter", parent).fadeIn(function () {
$("input", parent).val("").focus().css("border", "1px solid #aaa");
});
});
$(".datatable .opened").click(function () {
var parent = $(this).parent().parent();
$(".filter", parent).fadeOut(function () {
$(".closed", parent).show();
$("input", parent).val("").each(function () {
window.updateDatatableFilter(this);
});
});
});
$(".datatable .filter input").keyup(function(e) {
window.updateDatatableFilter(this);
e.preventDefault();
e.stopPropagation();
});
$(".datatable table").each(function () {
var found = false;
$("tr", this).each(function () {
if (!found && $(this).find("th").size() == 0) {
found = true;
}
});
if (!found) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo(this);
}
});
// Applies styles to datatables.
$(".datatable").each(function () {
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
$(".datatable table.tablesorter").each(function () {
$(this).bind("sortEnd", function () {
$(".datatable").each(function () {
$(this).find("th, td")
.removeClass("top").removeClass("bottom")
.removeClass("left").removeClass("right")
.removeClass("dark");
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
});
});
}
});
</script>
</div>
</div>
<script type="application/javascript">
$(function() {
$(".userListMarker").click(function() {
$.post("/data/lists", {action: "findTouched"}, function(json) {
Codeforces.facebox(".userListsFacebox");
var tbody = $("#facebox tbody");
tbody.empty();
for (var i in json) {
tbody.append(
$("<tr></tr>").append(
$("<td></td>").attr("data-readKey", json[i].readKey).text(json[i].name)
)
);
}
Codeforces.updateDatatables();
tbody.find("td").css("cursor", "pointer").click(function() {
document.location = Codeforces.updateUrlParameter(document.location.href, "list", $(this).attr("data-readKey"));
});
}, "json");
});
});
</script>
</div>
<script type="application/javascript">
if ('serviceWorker' in navigator && 'fetch' in window && 'caches' in window) {
navigator.serviceWorker.register('/service-worker-23860.js')
.then(function (registration) {
console.log('Service worker registered: ', registration);
})
.catch(function (error) {
console.log('Registration failed: ', error);
});
}
</script>
<script>(function(){var js = "window['__CF$cv$params']={r:'8124cc5fef6f9d3d',t:'MTY5NjY2NzU5Ni44ODgwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script></body>
</html>
| ["\u0416\u0430\u0434\u043d\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b", "\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b", "\u0418\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u0434\u0438\u0444\u0444\u0443\u0440\u044b \u0438 \u0434\u0440.", "\u0420\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f, \u0442\u0435\u0445\u043d\u0438\u043a\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0441\u0438\u043c\u0443\u043b\u044f\u0446\u0438\u044f", "\u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c"] | ["\u0436\u0430\u0434\u043d\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b", "\u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u0438\u0432", "\u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430", "\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "*2000"] | ||
1567E | 1567 | E | ru | E. Заурядные запросы | <div class="problem-statement"><div class="header"><div class="title">E. Заурядные запросы</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Недавно, на свой день рождения, Алиса получила массив $$$a_1, a_2, \dots, a_n$$$. Массив ей очень понравился, как ее другу Бобу, которому Алиса его показала.</p><p>Однако довольно скоро Боб, как любой хороший друг, попросил Алису выполнить $$$q$$$ операций двух видов над ее массивом:</p><ul> <li> $$$1$$$ $$$x$$$ $$$y$$$: присвоить элементу $$$a_x$$$ значение $$$y$$$ (или $$$a_x = y$$$); </li><li> $$$2$$$ $$$l$$$ $$$r$$$: посчитать, сколько неубывающих подмассивов содержится в подмассиве $$$[a_l, a_{l+1}, \dots, a_r]$$$. Формально, нужно посчитать количество пар индексов $$$(p,q)$$$ таких, что $$$l \le p \le q \le r$$$ и $$$a_p \le a_{p+1} \le \dots \le a_{q-1} \le a_q$$$. </li></ul><p>Помогите Алисе ответить на запросы Боба!</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>В первой строке заданы два целых числа $$$n$$$ и $$$q$$$ ($$$1 \le n, q \le 2 \cdot 10^5$$$) — размер массива и количество запросов, соответственно.</p><p>Во второй строке заданы $$$n$$$ целых чисел $$$a_1, a_2, \dots, a_n$$$ ($$$1 \le a_i \le 10^9$$$) — массив Алисы.</p><p>В следующих $$$q$$$ строках заданы по три целых числа. Первое число в $$$i$$$-й строке — это $$$t_i$$$, тип операции $$$i$$$-го запроса ($$$t_i = 1$$$ или $$$t_i = 2$$$).</p><p>Если $$$t_i = 1$$$, то следующие два числа — это $$$x_i$$$ и $$$y_i$$$ ($$$1 \le x_i \le n$$$; $$$1 \le y_i \le 10^9$$$), позиция $$$x_i$$$ и новое значение $$$y_i$$$ (нужно присвоить $$$a_{x_i} = y_i$$$).</p><p>Если $$$t_i = 2$$$, то следующие два числа — это $$$l_i$$$ и $$$r_i$$$ ($$$1 \le l_i \le r_i \le n$$$), границы подмассива, о котором Боб спрашивает Алису в $$$i$$$-м запросе.</p><p>Гарантируется, что есть хотя бы один запрос второго типа.</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого запроса $$$2$$$-го типа выведите одно целое число — ответ на данный запрос.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5 6
3 1 4 1 5
2 2 5
2 1 3
1 4 4
2 2 5
1 2 6
2 2 5
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
6
4
10
7
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>Для первого запроса ($$$l = 2$$$ и $$$r = 5$$$) неубывающие подмассивы $$$[p,q]$$$ — это $$$[2,2]$$$, $$$[3,3]$$$, $$$[4,4]$$$, $$$[5,5]$$$, $$$[2,3]$$$ и $$$[4,5]$$$.</p></div></div> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="X-Csrf-Token" content="d2705d5da925857a80c82a58e0f237bc"/>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=0.01"/>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery-1.8.3.js"></script>
<script type="application/javascript">
window.locale = "ru";
window.standaloneContest = false;
function adjustViewport() {
var screenWidthPx = Math.min($(window).width(), window.screen.width);
var siteWidthPx = 1100; // min width of site
var ratio = Math.min(screenWidthPx / siteWidthPx, 1.0);
var viewport = "width=device-width, initial-scale=" + ratio;
$('#viewport').attr('content', viewport);
var style = $('<style>html * { max-height: 1000000px; }</style>');
$('html > head').append(style);
}
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
adjustViewport();
}
/* Protection against trailing dot in domain. */
let hostLength = window.location.host.length;
if (hostLength > 1 && window.location.host[hostLength - 1] === '.') {
window.location = window.location.protocol + "//" + window.location.host.substring(0, hostLength - 1);
}
</script>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="profileName" content="i1">
<meta name="google-site-verification" content="OTd2dN5x4nS4OPknPI9JFg36fKxjqY0i1PSfFPv_J90"/>
<meta property="fb:admins" content="100001352546622" />
<meta property="og:image" content="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<link rel="image_src" href="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<meta property="og:title" content="Задача - E - Codeforces"/>
<meta property="og:description" content=""/>
<meta property="og:site_name" content="Codeforces"/>
<meta name="cc" content="e019f64ee12ed74315f46e5ea85bf33cee95598f"/>
<meta name="utc_offset" content="+03:00"/>
<meta name="verify-reformal" content="f56f99fd7e087fb6ccb48ef2" />
<title>Задача - E - Codeforces</title>
<meta name="description" content="Codeforces. Соревнования и олимпиады по информатике и программированию, сообщество программистов" />
<meta name="keywords" content="программирование информатика контест олимпиада алгоритмы c++ java графы vkcup" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/font-awesome.min.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/line-awesome.min.css" type="text/css" charset="utf-8" />
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="//codeforces.org/s/23860/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="//codeforces.org/s/23860/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="//codeforces.org/s/23860/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="//codeforces.org/s/23860/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="//codeforces.org/s/23860/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="//codeforces.org/s/23860/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="//codeforces.org/s/23860/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="//codeforces.org/s/23860/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="//codeforces.org/s/23860/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="//codeforces.org/s/23860/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="//codeforces.org/s/23860/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="//codeforces.org/s/23860/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="//codeforces.org/s/23860/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="//codeforces.org/s/23860/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!--CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/css/prettify.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/clear.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/ttypography.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/problem-statement.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/second-level-menu.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/roundbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/datatable.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/table-form.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/topic.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.jgrowl.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/facebox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.wysiwyg.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.autocomplete.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/codeforces.datepick.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/colorbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.drafts.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/community.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/sidebar-menu.css" type="text/css" charset="utf-8" />
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$$$','$$$']], displayMath: [['$$$$$$','$$$$$$']]}
});
MathJax.Hub.Register.StartupHook("End", function () {
Codeforces.runMathJaxListeners();
});
</script>
<script type="text/javascript" async
src="https://mathjax.codeforces.org/MathJax.js?config=TeX-AMS_HTML-full"
>
</script>
<!-- /MathJax -->
<script type="text/javascript" src="//codeforces.org/s/23860/js/prettify/prettify.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/moment-with-locales.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/pushstream.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.easing.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.jgrowl.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.swipe.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.hotkeys.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/facebox.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.colorpicker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.table.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.image.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.link.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.autocomplete.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ie6blocker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ba-bbq.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.drafts.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/clipboard.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/autosize.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/sjcl.js"></script>
<script type="text/javascript" src="/scripts/a3c2074ccb6f4b67a3c2bb62db02053f/ru/codeforces-options.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/codeforces.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/EventCatcher.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/preparedVerdictFormats-ru.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/confetti.min.js"></script>
<!--/CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/skins/markitup/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/sets/markdown/style.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/sets/markdown/set.js"></script>
<!--[if IE]>
<style>
#sidebar {
padding-left: 1em;
margin: 1em 1em 1em 0;
}
</style>
<![endif]-->
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick-ru.js"></script>
</head>
<body class=" "><span style='display:none;' class='csrf-token' data-csrf='d2705d5da925857a80c82a58e0f237bc'> </span>
<!-- .notificationTextCleaner used in Codeforces.showAnnouncements() -->
<div class="notificationTextCleaner" style="font-size: 0"></div>
<div class="button-up" style="display: none; opacity: 0.7; width: 50px; height:100%; position: fixed; left: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 3.0rem;"><i class="icon-circle-arrow-up"></i></div>
<div class="verdictPrototypeDiv" style="display: none;"></div>
<!-- Codeforces JavaScripts. -->
<script type="text/javascript">
String.prototype.hashCode = function() {
var hash = 0, i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
var queryMobile = Codeforces.queryString.mobile;
if (queryMobile === "true" || queryMobile === "false") {
Codeforces.putToStorage("useMobile", queryMobile === "true");
} else {
var useMobile = Codeforces.getFromStorage("useMobile");
if (useMobile === true || useMobile === false) {
if (useMobile != false) {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", useMobile));
}
}
}
</script>
<script type="text/javascript">
if (window.parent.frames.length > 0) {
window.stop();
}
</script>
<script type="text/javascript">
$(document).ready(function () {
(function () {
jQuery.expr[':'].containsCI = function(elem, index, match) {
return !match || !match.length || match.length < 4 || !match[3] || (
elem.textContent || elem.innerText || jQuery(elem).text() || ''
).toLowerCase().indexOf(match[3].toLowerCase()) >= 0;
}
}(jQuery));
$.ajaxPrefilter(function(options, originalOptions, xhr) {
var csrf = Codeforces.getCsrfToken();
if (csrf) {
var data = originalOptions.data;
if (originalOptions.data !== undefined) {
if (Object.prototype.toString.call(originalOptions.data) === '[object String]') {
data = $.deparam(originalOptions.data);
}
} else {
data = {};
}
options.data = $.param($.extend(data, { csrf_token: csrf }));
}
});
window.getCodeforcesServerTime = function(callback) {
$.post("/data/time", {}, callback, "json");
}
window.updateTypography = function () {
$("div.ttypography code").addClass("tt");
$("div.ttypography pre>code").addClass("prettyprint").removeClass("tt");
$("div.ttypography table").addClass("bordertable");
prettyPrint();
}
$.ajaxSetup({ scriptCharset: "utf-8" ,contentType: "application/x-www-form-urlencoded; charset=UTF-8", headers: {
'X-Csrf-Token': Codeforces.getCsrfToken()
}});
window.updateTypography();
Codeforces.signForms();
setTimeout(function() {
$(".second-level-menu-list").lavaLamp({
fx: "backout",
speed: 700
});
}, 100);
Codeforces.countdown();
$("a[rel='photobox']").colorbox();
function showAnnouncements(json) {
//info("j=" + JSON.stringify(json));
if (json.t != "a") {
return;
}
setTimeout(function() {
Codeforces.showAnnouncements(json.d, "ru");
}, Math.random() * 500);
}
function showEventCatcherUserMessage(json) {
if (json.t == "s") {
var points = json.d[5];
var passedTestCount = json.d[7];
var judgedTestCount = json.d[8];
var verdict = preparedVerdictFormats[json.d[12]];
var verdictPrototypeDiv = $(".verdictPrototypeDiv");
verdictPrototypeDiv.html(verdict);
if (judgedTestCount != null && judgedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-judged").text(judgedTestCount);
}
if (passedTestCount != null && passedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-passed").text(passedTestCount);
}
if (points != null && points != undefined) {
verdictPrototypeDiv.find(".verdict-format-points").text(points);
}
Codeforces.showMessage(verdictPrototypeDiv.text());
}
}
$(".clickable-title").each(function() {
var title = $(this).attr("data-title");
if (title) {
var tmp = document.createElement("DIV");
tmp.innerHTML = title;
$(this).attr("title", tmp.textContent || tmp.innerText || "");
}
});
$(".clickable-title").click(function() {
var title = $(this).attr("data-title");
if (title) {
Codeforces.alert(title);
} else {
Codeforces.alert($(this).attr("title"));
}
}).css("position", "relative").css("bottom", "3px");
Codeforces.showDelayedMessage();
Codeforces.reformatTimes();
//Codeforces.initializePubSub();
if (window.codeforcesOptions.subscribeServerUrl) {
window.eventCatcher = new EventCatcher(
window.codeforcesOptions.subscribeServerUrl,
[
Codeforces.getGlobalChannel(),
Codeforces.getUserChannel(),
Codeforces.getUserShowMessageChannel(),
Codeforces.getContestChannel(),
Codeforces.getParticipantChannel(),
Codeforces.getTalkChannel()
]
);
if (Codeforces.getParticipantChannel()) {
window.eventCatcher.subscribe(Codeforces.getParticipantChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getContestChannel()) {
window.eventCatcher.subscribe(Codeforces.getContestChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getGlobalChannel()) {
window.eventCatcher.subscribe(Codeforces.getGlobalChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserShowMessageChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserShowMessageChannel(), function(json) {
showEventCatcherUserMessage(json);
});
}
}
Codeforces.setupContestTimes("/data/contests");
Codeforces.setupSpoilers();
Codeforces.setupTutorials("/data/problemTutorial");
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-743380-5']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = (document.location.protocol == 'https:' ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div id="body">
<div class="side-bell" style="visibility: hidden; display: none; opacity: 0.7; width: 40px; position: fixed; right: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 1.5rem;">
<span class="icon-stack" style="width: 100%;">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-bell-alt icon-light"></i>
</span>
<br/>
<span class="side-bell__count" style="position: relative; top: -10px;"></span>
</div>
<div id="header" style="position: relative;">
<div style="float:left; max-height: 60px;">
<a href="/"><img height="65" style="height: 65px;" alt="Codeforces" title="Codeforces" src="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png"/></a>
</div>
<div class="lang-chooser">
<div style="text-align: right;">
<a href="?locale=en"><img src="//codeforces.org/s/23860/images/flags/24/gb.png" title="In English" alt="In English"/></a>
<a href="?locale=ru"><img src="//codeforces.org/s/23860/images/flags/24/ru.png" title="По-русски" alt="По-русски"/></a>
</div>
<div >
<a href="/enter?back=%2Fcontest%2F1567%2Fproblem%2FE%3Flocale%3Dru">Войти</a>
|
<a href="/register">Зарегистрироваться</a>
</div>
</div>
<br style="clear: both;"/>
</div>
<div class="roundbox menu-box borderTopRound borderBottomRound" style="">
<div class="menu-list-container">
<ul class="menu-list main-menu-list">
<li class=""><a href="/">Главная</a></li>
<li class=""><a href="/top">Топ</a></li>
<li class=""><a href="/catalog">Каталог</a></li>
<li class="current"><a href="/contests">Соревнования</a></li>
<li class=""><a href="/gyms">Тренировки</a></li>
<li class=""><a href="/problemset">Архив</a></li>
<li class=""><a href="/groups">Группы</a></li>
<li class=""><a href="/ratings">Рейтинг</a></li>
<li class=""><a href="/edu/courses"><span class="edu-menu-item">Edu</span></a></li>
<li class=""><a href="/apiHelp">API</a></li>
<li class=""><a href="/calendar">Календарь</a></li>
<li class=""><a href="/help">Помощь</a></li>
</ul>
<form method="post" action="/search"><input type='hidden' name='csrf_token' value='d2705d5da925857a80c82a58e0f237bc'/>
<input class="search" name="query" data-isPlaceholder="true" value=""/>
</form>
<br style="clear: both;"/>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("input.search").focus(function () {
if ($(this).attr("data-isPlaceholder") === "true") {
$(this).val("");
$(this).removeAttr("data-isPlaceholder");
}
});
});
</script>
<br style="height: 3em; clear: both;"/>
<div style="position: relative;">
<div id="sidebar">
<div class="roundbox sidebox borderTopRound " style="">
<table class="rtable ">
<tbody>
<tr>
<th class="left" style="width:100%;"><a style="color: black" href="/contest/1567">Codeforces Round 742 (Div. 2)</a></th>
</tr>
<tr>
<td class="left bottom" colspan="1"><span class="contest-state-phase">Закончено</span></td>
</tr>
</tbody>
</table>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Дорешивание?
<div class="top-links">
</div>
</div>
<div>
<div style="margin:1em;font-size:0.8em;">
Хотите дорешать задачи? Просто зарегистрируйтесь на дорешивание.
</div>
<div style="text-align:center;margin:1em;">
<form action="" method="post"><input type='hidden' name='csrf_token' value='d2705d5da925857a80c82a58e0f237bc'/>
<input type="hidden" name="action" value="registerForPractice"/>
<input type="submit" name="submit" value="Зарегистрироваться" style="padding:0 0.5em;">
</form>
</div>
</div>
</div>
<div class="roundbox sidebox ContestVirtualFrame borderTopRound " style="">
<div class="caption titled">→ Виртуальное участие <i class="sidebar-caption-icon las la-angle-down"></i>
<div class="top-links">
</div>
</div>
<div style=" "
data-page-url="/data/sidebarFrames"
>
<div style="margin:1em;font-size:0.8em;">
Виртуальное соревнование – это способ прорешать прошедшее соревнование в режиме, максимально близком к участию во время его проведения. Поддерживается только ICPC режим для виртуальных соревнований.
Если вы раньше видели эти задачи,
виртуальное соревнование не для вас – решайте эти задачи в архиве.
Если вы хотите просто дорешать задачи, виртуальное соревнование не для вас – решайте эти задачи в архиве.
Запрещается использовать чужой код, читать разборы задач и общаться по содержанию соревнования с кем-либо.
</div>
<div style="text-align:center;margin:1em;">
<form action="/contest/1567/virtual" method="get">
<input type="submit" name="submit" value="Начать виртуальное участие" style="padding:0 0.5em;">
</form>
</div>
</div>
<script>
$(function () {
$(".ContestVirtualFrame .sidebar-caption-icon").click(function() {
$(this).toggleClass("la-angle-down la-angle-right");
const $target = $(this).parent().next();
$target.toggle();
const dataPageUrl = $target.attr("data-page-url");
const collapsed = $(this).hasClass("la-angle-right");
const params = {
action: "setCollapsed",
sidebarFrameSimpleClassName: "ContestVirtualFrame",
collapsed
};
$.each($target[0].attributes, function(i, a) {
const name = a.name;
if (name.startsWith("data-extra-key-")) {
const key = a.value;
const keyIndex = parseInt(name.substring("data-extra-key-".length));
const value = $target.attr("data-extra-value-" + keyIndex);
params[key] = value;
}
});
$.post(dataPageUrl, params, function (result) {
if (result["success"] !== "true") {
Codeforces.showMessage("Не удалось сохранить состояние блока.");
}
}, "json");
return false;
});
})
</script>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Теги задачи
<div class="top-links">
</div>
</div>
<div style="padding: 0.5em;">
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Интегрирование, диффуры и др.">
математика
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Разделяй и властвуй">
разделяй и властвуй
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Кучи, деревья отрезков, деревья поиска и др.">
структуры данных
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Сложность">
*2200
</span>
</div>
<div style="clear:both;text-align:right;font-size:1.1rem;">
<span title="Пожалуйста, войдите в систему" class="notice">Нет прав на редактирование</span>
</div>
</div>
</div>
<form id="addTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='d2705d5da925857a80c82a58e0f237bc'/>
<input name="action" type="hidden" value="addTag"/>
<input name="problemId" type="hidden" value="1099177"/>
<input name="tagName" type="hidden" value=""/>
</form>
<form id="removeTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='d2705d5da925857a80c82a58e0f237bc'/>
<input name="action" type="hidden" value="removeTag"/>
<input name="problemId" type="hidden" value="1099177"/>
<input name="tagName" type="hidden" value=""/>
</form>
<script type="text/javascript">
$(".tag-box img").click(function () {
var tagName = $(this).attr("value");
Codeforces.confirm("Вы уверены, что хотите удалить этот тег?", function () {
$("#removeTagForm input[name=tagName]").val(tagName);
$("#removeTagForm").submit();
}, function () {
}, "Да", "Нет");
});
$("#addTagLink").click(function () {
$(this).hide();
$("#addTagLabel").show();
return false;
});
$("#addTagSelect").change(function () {
var tagName = $(this).val();
if (tagName === "") {
$("#addTagLabel").hide();
$("#addTagLink").show();
} else {
$("#addTagForm input[name=tagName]").val(tagName);
$("#addTagForm").submit();
}
});
</script>
<style type="text/css">
#new-resource-form tr td {
padding-top: 0.5em;
}
#new-resource-form input:not([type="submit"]) {
font-size: 0.8em;
}
#new-resource-form select {
font-size: 0.8em;
}
.new-resource-error {
font-size: 0.8em;
}
.resource-locale {
color: #666;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
}
</style>
<div class="roundbox sidebox sidebar-menu borderTopRound " style="">
<div class="caption titled">→ Материалы соревнования
<div class="top-links">
</div>
</div>
<ul>
<li>
<span>
<a href="/blog/entry/94468" title="Codeforces Round #742 (Div. 2)" target="_blank">Анонс <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14291" resourceName="Codeforces Round #742 (Div. 2)"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
<li>
<span>
<a href="/blog/entry/94581" title="Codeforces Round #742 Editorial" target="_blank">Разбор задач <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14302" resourceName="Codeforces Round #742 Editorial"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
</ul>
</div></div>
<div id="pageContent" class="content-with-sidebar">
<div class="second-level-menu">
<ul class="second-level-menu-list">
<li class="current selectedLava"><a
href="/contest/1567">Задачи</a></li>
<li><a
href="/contest/1567/submit">Отослать</a></li>
<li><a
href="/contest/1567/my">Мои посылки</a></li>
<li><a
href="/contest/1567/status">Статус</a></li>
<li><a
href="/contest/1567/hacks">Взломы</a></li>
<li><a
href="/contest/1567/room/1">Комната</a></li>
<li><a
href="/contest/1567/standings">Положение</a></li>
<li><a
href="/contest/1567/customtest">Запуск</a></li>
</ul>
</div>
<style>
#facebox .content:has(.diff-popup) {
width: 90vw;
max-width: 120rem !important;
}
.testCaseMarker {
position: absolute;
font-weight: bold;
font-size: 1rem;
}
.diff-popup {
width: 90vw;
max-width: 120rem !important;
display: none;
overflow: auto;
}
.input-output-copier {
font-size: 1.2rem;
float: right;
color: #888 !important;
cursor: pointer;
border: 1px solid rgb(185, 185, 185);
padding: 3px;
margin: 1px;
line-height: 1.1rem;
text-transform: none;
}
.input-output-copier:hover {
background-color: #def;
}
.test-explanation textarea {
width: 100%;
height: 1.5em;
}
.pending-submission-message {
color: darkorange !important;
}
</style>
<script>
const OPENING_SPACE = String.fromCharCode(1001);
const CLOSING_SPACE = String.fromCharCode(1002);
const nodeToText = function (node, pre) {
let result = [];
if (node.tagName === "SCRIPT" || node.tagName === "math"
|| (node.classList && node.classList.contains("input-output-copier")))
return [];
if (node.tagName === "NOBR") {
result.push(OPENING_SPACE);
}
if (node.nodeType === Node.TEXT_NODE) {
let s = node.textContent;
if (!pre) {
s = s.replace(/\s+/g, " ");
}
if (s.length > 0) {
result.push(s);
}
}
if (pre && node.tagName === "BR") {
result.push("\n");
}
node.childNodes.forEach(function (child) {
result.push(nodeToText(child, node.tagName === "PRE").join(""));
});
if (node.tagName === "DIV"
|| node.tagName === "P"
|| node.tagName === "PRE"
|| node.tagName === "UL"
|| node.tagName === "LI"
) {
result.push("\n");
}
if (node.tagName === "NOBR") {
result.push(CLOSING_SPACE);
}
return result;
}
const isSpecial = function (c) {
return c === ',' || c === '.' || c === ';' || c === ')' || c === ' ';
}
const convertStatementToText = function(statmentNode) {
const text = nodeToText(statmentNode, false).join("").replace(/ +/g, " ").replace(/\n\n+/g, "\n\n");
let result = [];
for (let i = 0; i < text.length; i++) {
const c = text.charAt(i);
if (c === OPENING_SPACE) {
if (!((i > 0 && text.charAt(i - 1) === '(') || (result.length > 0 && result[result.length - 1] === ' '))) {
result.push('+');
}
} else if (c === CLOSING_SPACE) {
if (!(i + 1 < text.length && isSpecial(text.charAt(i + 1)))) {
result.push('-');
}
} else {
result.push(c);
}
}
return result.join("").split("\n").map(value => value.trim()).join("\n");
};
</script>
<div class="diff-popup">
</div>
<div class="problemindexholder" problemindex="E" data-uuid="ps_d21a1902e348355bef8eea30273478895e534851">
<div style="display: none; margin:1em 0;text-align: center; position: relative;" class="alert alert-info diff-notifier">
<div>Условие задачи было недавно изменено. <a class="view-changes" href="#">Просмотреть изменения.</a></div>
<span class="diff-notifier-close" style="position: absolute; top: 0.2em; right: 0.3em; cursor: pointer; font-size: 1.4em;">×</span>
</div>
<div class="ttypography"><div class="problem-statement"><div class="header"><div class="title">E. Заурядные запросы</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>Недавно, на свой день рождения, Алиса получила массив $$$a_1, a_2, \dots, a_n$$$. Массив ей очень понравился, как ее другу Бобу, которому Алиса его показала.</p><p>Однако довольно скоро Боб, как любой хороший друг, попросил Алису выполнить $$$q$$$ операций двух видов над ее массивом:</p><ul> <li> $$$1$$$ $$$x$$$ $$$y$$$: присвоить элементу $$$a_x$$$ значение $$$y$$$ (или $$$a_x = y$$$); </li><li> $$$2$$$ $$$l$$$ $$$r$$$: посчитать, сколько неубывающих подмассивов содержится в подмассиве $$$[a_l, a_{l+1}, \dots, a_r]$$$. Формально, нужно посчитать количество пар индексов $$$(p,q)$$$ таких, что $$$l \le p \le q \le r$$$ и $$$a_p \le a_{p+1} \le \dots \le a_{q-1} \le a_q$$$. </li></ul><p>Помогите Алисе ответить на запросы Боба!</p></div><div class="input-specification"><div class="section-title">Входные данные</div><p>В первой строке заданы два целых числа $$$n$$$ и $$$q$$$ ($$$1 \le n, q \le 2 \cdot 10^5$$$) — размер массива и количество запросов, соответственно.</p><p>Во второй строке заданы $$$n$$$ целых чисел $$$a_1, a_2, \dots, a_n$$$ ($$$1 \le a_i \le 10^9$$$) — массив Алисы.</p><p>В следующих $$$q$$$ строках заданы по три целых числа. Первое число в $$$i$$$-й строке — это $$$t_i$$$, тип операции $$$i$$$-го запроса ($$$t_i = 1$$$ или $$$t_i = 2$$$).</p><p>Если $$$t_i = 1$$$, то следующие два числа — это $$$x_i$$$ и $$$y_i$$$ ($$$1 \le x_i \le n$$$; $$$1 \le y_i \le 10^9$$$), позиция $$$x_i$$$ и новое значение $$$y_i$$$ (нужно присвоить $$$a_{x_i} = y_i$$$).</p><p>Если $$$t_i = 2$$$, то следующие два числа — это $$$l_i$$$ и $$$r_i$$$ ($$$1 \le l_i \le r_i \le n$$$), границы подмассива, о котором Боб спрашивает Алису в $$$i$$$-м запросе.</p><p>Гарантируется, что есть хотя бы один запрос второго типа.</p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Для каждого запроса $$$2$$$-го типа выведите одно целое число — ответ на данный запрос.</p></div><div class="sample-tests"><div class="section-title">Пример</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5 6
3 1 4 1 5
2 2 5
2 1 3
1 4 4
2 2 5
1 2 6
2 2 5
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
6
4
10
7
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>Для первого запроса ($$$l = 2$$$ и $$$r = 5$$$) неубывающие подмассивы $$$[p,q]$$$ — это $$$[2,2]$$$, $$$[3,3]$$$, $$$[4,4]$$$, $$$[5,5]$$$, $$$[2,3]$$$ и $$$[4,5]$$$.</p></div></div><p> </p></div>
</div>
<script>
$(function () {
Codeforces.addMathJaxListener(function () {
let $problem = $("div[problemindex=E]");
let uuid = $problem.attr("data-uuid");
let statementText = convertStatementToText($problem.find(".ttypography").get(0));
let previousStatementText = Codeforces.getFromStorage(uuid);
if (previousStatementText) {
if (previousStatementText !== statementText) {
$problem.find(".diff-notifier").show();
$problem.find(".diff-notifier-close").click(function() {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
$problem.find(".diff-notifier").hide();
});
$problem.find("a.view-changes").click(function() {
$.post("/data/diff", {action: "getDiff", a: previousStatementText, b: statementText}, function (result) {
if (result["success"] === "true") {
Codeforces.facebox(".diff-popup", "//codeforces.org/s/23860");
$("#facebox .diff-popup").html(result["diff"]);
}
}, "json");
});
}
} else {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
window.changedTests = new Set();
function endsWith(string, suffix) {
return string.indexOf(suffix, string.length - suffix.length) !== -1;
}
const inputFileDiv = $("div.input-file");
const inputFile = inputFileDiv.text();
const outputFileDiv = $("div.output-file");
const outputFile = outputFileDiv.text();
if (!endsWith(inputFile, "стандартный ввод")
&& !endsWith(inputFile, "standard input")) {
inputFileDiv.attr("style", "font-weight: bold");
}
if (!endsWith(outputFile, "стандартный вывод")
&& !endsWith(outputFile, "standard output")) {
outputFileDiv.attr("style", "font-weight: bold");
}
const titleDiv = $("div.header div.title");
String.prototype.replaceAll = function (search, replace) {
return this.split(search).join(replace);
};
$(".sample-test .title").each(function () {
const preId = ("id" + Math.random()).replaceAll(".", "0");
const cpyId = ("id" + Math.random()).replaceAll(".", "0");
$(this).parent().find("pre").attr("id", preId);
const $copy = $("<div title='Скопировать' data-clipboard-target='#" + preId + "' id='" + cpyId + "' class='input-output-copier'>Скопировать</div>");
$(this).append($copy);
const clipboard = new Clipboard('#' + cpyId, {
text: function (trigger) {
const pre = document.querySelector('#' + preId);
const lines = pre.querySelectorAll(".test-example-line");
return Codeforces.filterClipboardText(pre.innerText, lines.length);
}
});
const isInput = $(this).parent().hasClass("input");
clipboard.on('success', function (e) {
if (isInput) {
Codeforces.showMessage("Входные данные были скопированы в буфер обмена");
} else {
Codeforces.showMessage("Выходные данные были скопированы в буфер обмена");
}
e.clearSelection();
});
});
$(".test-form-item input").change(function () {
addPendingSubmissionMessage($($(this).closest("form")), "Вы изменили ответ, не забудьте его отправить, если вы хотите сохранить изменения");
const index = $(this).closest(".problemindexholder").attr("problemindex");
let test = "";
$(this).closest("form input").each(function () {
const test_ = $(this).attr("name");
if (test_ && test_.substring(0, 4) === "test") {
test = test_;
}
});
if (index.length > 0 && test.length > 0) {
const indexTest = index + "::" + test;
window.changedTests.add(indexTest);
}
});
$(window).on('beforeunload', function () {
if (window.changedTests.size > 0) {
return 'Dialog text here';
}
});
autosize($('.test-explanation textarea'));
$(".test-example-line").hover(function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
let top = 1E20;
let left = 1E20;
let problem = $(this).closest(".problemindexholder");
$(this).closest(".input").find("." + clazz).css("background-color", "#FFFDE7").each(function() {
top = Math.min(top, $(this).offset().top);
left = Math.min(left, $(this).offset().left);
});
let testCaseMarker = problem.find(".testCaseMarker_" + end);
if (testCaseMarker.length === 0) {
const html = "<div class=\"testCaseMarker testCaseMarker_" + end + " notice\"></div>";
problem.append($(html));
testCaseMarker = problem.find(".testCaseMarker_" + end);
}
if (testCaseMarker) {
testCaseMarker.show()
.offset({top, left: left - 20})
.text(end);
}
}
}
});
}, function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
$("." + clazz).css("background-color", "");
$(this).closest(".problemindexholder").find(".testCaseMarker_" + end).hide();
}
}
});
});
});
</script>
</div>
</div>
<br style="clear: both;"/>
<div id="footer">
<div><a href="https://codeforces.com/">Codeforces</a> (c) Copyright 2010-2023 Михаил Мирзаянов</div>
<div>Соревнования по программированию 2.0</div>
<div>Время на сервере: <span class="format-timewithseconds" data-locale="ru">07.10.2023 11:33:18</span> (i1).</div>
<div>Десктопная версия, переключиться на <a rel="nofollow" class="switchToMobile" href="?mobile=true">мобильную</a>.</div>
<div class="smaller"><a href="/privacy">Privacy Policy</a></div>
<div style="margin-top: 25px;">
При поддержке
</div>
<div style="margin-top: 8px; padding-bottom: 20px; position: relative; left: 10px;">
<a href="https://ton.org/"><img style="margin-right: 2em; width: 60px;" src="//codeforces.org/s/23860/images/ton-100x100.png" alt="TON" title="TON"/></a>
<a href="http://ifmo.ru/ru/"><img style="width: 130px;" src="//codeforces.org/s/23860/images/itmo_small_ru-logo.png" alt="ИТМО" title="ИТМО"/></a>
</div>
</div>
<script type="text/javascript">
$(function() {
$(".switchToMobile").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "true"));
return false;
});
$(".switchToDesktop").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "false"));
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
if ($(window).width() < 1600) {
$('.button-up').css('width', '30px').css('line-height', '30px').css('font-size', '20px');
}
if ($(window).width() >= 1200) {
$ (window).scroll (function () {
if ($ (this).scrollTop () > 100) {
$ ('.button-up').fadeIn();
} else {
$ ('.button-up').fadeOut();
}
});
$('.button-up').click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
$('.button-up').hover(function () {
$(this).animate({
'opacity':'1'
}).css({'background-color':'#e7ebf0','color':'#6a86a4'});
}, function () {
$(this).animate({
'opacity':'0.7'
}).css({'background':'none','color':'#d3dbe4'});;
});
}
Codeforces.focusOnError();
});
</script>
<div class="userListsFacebox" style="display:none;">
<div style="padding: 0.5em; width: 600px; max-height: 200px; overflow-y: auto">
<div class="datatable"
style="background-color: #E1E1E1; padding-bottom: 3px;">
<div class="lt"> </div>
<div class="rt"> </div>
<div class="lb"> </div>
<div class="rb"> </div>
<div style="padding: 4px 0 0 6px;font-size:1.4rem;position:relative;">
Списки пользователей
<div style="position:absolute;right:0.25em;top:0.35em;">
<span style="padding:0;position:relative;bottom:2px;" class="rowCount"></span>
<img class="closed" src="//codeforces.org/s/23860/images/icons/control.png"/>
<span class="filter" style="display:none;">
<img class="opened" src="//codeforces.org/s/23860/images/icons/control-270.png"/>
<input style="padding:0 0 0 20px;position:relative;bottom:2px;border:1px solid #aaa;height:17px;font-size:1.3rem;"/>
</span>
</div>
</div>
<div style="background-color: white;margin:0.3em 3px 0 3px;position:relative;">
<div class="ilt"> </div>
<div class="irt"> </div>
<table class="">
<thead>
<tr>
<th>Название</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
// Create new ':containsIgnoreCase' selector for search
jQuery.expr[':'].containsIgnoreCase = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
if (window.updateDatatableFilter == undefined) {
window.updateDatatableFilter = function(i) {
var parent = $(i).parent().parent().parent().parent();
$("tr.no-items", parent).remove();
$("tr", parent).hide().removeClass('visible');
var text = $(i).val();
if (text) {
$("tr" + ":containsIgnoreCase('" + text + "')", parent).show().addClass('visible');
} else {
parent.find(".rowCount").text("");
$("tr", parent).show().addClass('visible');
}
var found = false;
var visibleRowCount = 0;
$("tr", parent).each(function () {
if (!found) {
if ($(this).find("th").size() > 0) {
$(this).show().addClass('visible');
found = true;
}
}
if ($(this).hasClass('visible')) {
visibleRowCount++;
}
});
if (text) {
parent.find(".rowCount").text("Совпадений: " + (visibleRowCount - (found ? 1 : 0)));
}
if (visibleRowCount == (found ? 1 : 0)) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo($(parent).find('table'));
}
$(parent).find("tr td").removeClass("dark");
$(parent).find("tr.visible:odd td").addClass("dark");
}
$(".datatable .closed").click(function () {
var parent = $(this).parent();
$(this).hide();
$(".filter", parent).fadeIn(function () {
$("input", parent).val("").focus().css("border", "1px solid #aaa");
});
});
$(".datatable .opened").click(function () {
var parent = $(this).parent().parent();
$(".filter", parent).fadeOut(function () {
$(".closed", parent).show();
$("input", parent).val("").each(function () {
window.updateDatatableFilter(this);
});
});
});
$(".datatable .filter input").keyup(function(e) {
window.updateDatatableFilter(this);
e.preventDefault();
e.stopPropagation();
});
$(".datatable table").each(function () {
var found = false;
$("tr", this).each(function () {
if (!found && $(this).find("th").size() == 0) {
found = true;
}
});
if (!found) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo(this);
}
});
// Applies styles to datatables.
$(".datatable").each(function () {
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
$(".datatable table.tablesorter").each(function () {
$(this).bind("sortEnd", function () {
$(".datatable").each(function () {
$(this).find("th, td")
.removeClass("top").removeClass("bottom")
.removeClass("left").removeClass("right")
.removeClass("dark");
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
});
});
}
});
</script>
</div>
</div>
<script type="application/javascript">
$(function() {
$(".userListMarker").click(function() {
$.post("/data/lists", {action: "findTouched"}, function(json) {
Codeforces.facebox(".userListsFacebox");
var tbody = $("#facebox tbody");
tbody.empty();
for (var i in json) {
tbody.append(
$("<tr></tr>").append(
$("<td></td>").attr("data-readKey", json[i].readKey).text(json[i].name)
)
);
}
Codeforces.updateDatatables();
tbody.find("td").css("cursor", "pointer").click(function() {
document.location = Codeforces.updateUrlParameter(document.location.href, "list", $(this).attr("data-readKey"));
});
}, "json");
});
});
</script>
</div>
<script type="application/javascript">
if ('serviceWorker' in navigator && 'fetch' in window && 'caches' in window) {
navigator.serviceWorker.register('/service-worker-23860.js')
.then(function (registration) {
console.log('Service worker registered: ', registration);
})
.catch(function (error) {
console.log('Registration failed: ', error);
});
}
</script>
<script>(function(){var js = "window['__CF$cv$params']={r:'8124cc682b24005f',t:'MTY5NjY2NzU5OC4yMDEwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script></body>
</html>
| ["\u0418\u043d\u0442\u0435\u0433\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u0434\u0438\u0444\u0444\u0443\u0440\u044b \u0438 \u0434\u0440.", "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u0439 \u0438 \u0432\u043b\u0430\u0441\u0442\u0432\u0443\u0439", "\u041a\u0443\u0447\u0438, \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u043e\u0442\u0440\u0435\u0437\u043a\u043e\u0432, \u0434\u0435\u0440\u0435\u0432\u044c\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0438 \u0434\u0440.", "\u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c"] | ["\u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430", "\u0440\u0430\u0437\u0434\u0435\u043b\u044f\u0439 \u0438 \u0432\u043b\u0430\u0441\u0442\u0432\u0443\u0439", "\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0434\u0430\u043d\u043d\u044b\u0445", "*2200"] | ||
1567F | 1567 | F | ru | F. Непереводимое название | <div class="problem-statement"><div class="header"><div class="title">F. Непереводимое название</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>У Алисы есть пустое поле из $$$n$$$ строк и $$$m$$$ столбцов. Некоторые клетки этого поля помечены, и <span class="tex-font-style-bf">ни одна помеченная клетка не касается края поля</span>. (Две клетки считаются <span class="tex-font-style-it">соседними</span>, если они касаются по стороне.) </p><p>Алиса хочет записать в каждую клетку число так, чтобы они удовлетворяли следующим условиям: </p><ul> <li> в каждой <span class="tex-font-style-it">непомеченной</span> клетке записано либо $$$1$$$, либо $$$4$$$; </li><li> в каждой <span class="tex-font-style-it">помеченной</span> клетке записана сумма чисел всех соседних <span class="tex-font-style-bf">непомеченных</span> клеток (если у помеченной вершины нет соседних непомеченных, то сумма равна $$$0$$$); </li><li> в каждой <span class="tex-font-style-it">помеченной</span> клетке записанное число делится на $$$5$$$. </li></ul> Не придумав ничего, Алиса решила попросить помощи у Боба. Помогите Бобу найти любое подходящее заполнение поля, или определить, что такого поля не существует.</div><div class="input-specification"><div class="section-title">Входные данные</div><p>В первой строке заданы два целых числа $$$n$$$ и $$$m$$$ ($$$1 \leq n, m \leq 500$$$) — количество строк и столбцов поля, соответственно.</p><p>Далее следуют $$$n$$$ строк, каждая состоит из $$$m$$$ символов. Каждый символ — это «<span class="tex-font-style-tt">.</span>» или «<span class="tex-font-style-tt">X</span>» — непомеченная или помеченная клетка, соответственно. <span class="tex-font-style-bf">Ни одна помеченная клетка не касается краев поля.</span></p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Выведите «<span class="tex-font-style-tt">NO</span>», если не существует подходящего заполнения. В противном случае выведите «<span class="tex-font-style-tt">YES</span>». Далее выведите $$$n$$$ строк по $$$m$$$ целых чисел через пробел — числа в клетках поля.</p></div><div class="sample-tests"><div class="section-title">Примеры</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5 5
.....
.XXX.
.X.X.
.XXX.
.....
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 1 4 4 1
4 5 5 5 1
4 5 1 5 4
1 5 5 5 4
1 4 4 1 4
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
5 5
.....
.XXX.
.XXX.
.XXX.
.....
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
NO
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
3 2
..
..
..
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 1
4 1
1 4
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
9 9
.........
.XXXXX.X.
.X...X...
.X.XXXXX.
.X.X.X.X.
.X.XXX.X.
.X.....X.
.XXXXXXX.
.........
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 4 4 1 4 1 4 1 4
1 5 5 5 5 5 4 10 1
4 5 1 4 1 5 4 4 4
4 5 1 5 5 0 5 5 1
4 5 1 5 4 5 1 5 4
4 5 1 5 5 5 4 5 1
1 5 4 4 1 1 4 5 1
4 5 5 5 5 5 5 5 4
1 1 1 1 4 4 1 1 4
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>Можно показать, что во втором примере не существует подходящего заполнения.</p></div></div> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="X-Csrf-Token" content="a634c1a458a32f00333debd3fb662650"/>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=0.01"/>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery-1.8.3.js"></script>
<script type="application/javascript">
window.locale = "ru";
window.standaloneContest = false;
function adjustViewport() {
var screenWidthPx = Math.min($(window).width(), window.screen.width);
var siteWidthPx = 1100; // min width of site
var ratio = Math.min(screenWidthPx / siteWidthPx, 1.0);
var viewport = "width=device-width, initial-scale=" + ratio;
$('#viewport').attr('content', viewport);
var style = $('<style>html * { max-height: 1000000px; }</style>');
$('html > head').append(style);
}
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
adjustViewport();
}
/* Protection against trailing dot in domain. */
let hostLength = window.location.host.length;
if (hostLength > 1 && window.location.host[hostLength - 1] === '.') {
window.location = window.location.protocol + "//" + window.location.host.substring(0, hostLength - 1);
}
</script>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<meta http-equiv="profileName" content="i1">
<meta name="google-site-verification" content="OTd2dN5x4nS4OPknPI9JFg36fKxjqY0i1PSfFPv_J90"/>
<meta property="fb:admins" content="100001352546622" />
<meta property="og:image" content="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<link rel="image_src" href="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png" />
<meta property="og:title" content="Задача - F - Codeforces"/>
<meta property="og:description" content=""/>
<meta property="og:site_name" content="Codeforces"/>
<meta name="cc" content="e019f64ee12ed74315f46e5ea85bf33cee95598f"/>
<meta name="utc_offset" content="+03:00"/>
<meta name="verify-reformal" content="f56f99fd7e087fb6ccb48ef2" />
<title>Задача - F - Codeforces</title>
<meta name="description" content="Codeforces. Соревнования и олимпиады по информатике и программированию, сообщество программистов" />
<meta name="keywords" content="программирование информатика контест олимпиада алгоритмы c++ java графы vkcup" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/font-awesome.min.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/line-awesome.min.css" type="text/css" charset="utf-8" />
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="//codeforces.org/s/23860/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="//codeforces.org/s/23860/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="//codeforces.org/s/23860/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="//codeforces.org/s/23860/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="//codeforces.org/s/23860/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="//codeforces.org/s/23860/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="//codeforces.org/s/23860/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="//codeforces.org/s/23860/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="//codeforces.org/s/23860/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="//codeforces.org/s/23860/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="//codeforces.org/s/23860/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="//codeforces.org/s/23860/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="//codeforces.org/s/23860/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="//codeforces.org/s/23860/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!--CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/css/prettify.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/clear.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/ttypography.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/problem-statement.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/second-level-menu.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/roundbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/datatable.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/table-form.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/topic.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.jgrowl.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/facebox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.wysiwyg.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.autocomplete.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/codeforces.datepick.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/colorbox.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/jquery.drafts.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/community.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/css/sidebar-menu.css" type="text/css" charset="utf-8" />
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$$$','$$$']], displayMath: [['$$$$$$','$$$$$$']]}
});
MathJax.Hub.Register.StartupHook("End", function () {
Codeforces.runMathJaxListeners();
});
</script>
<script type="text/javascript" async
src="https://mathjax.codeforces.org/MathJax.js?config=TeX-AMS_HTML-full"
>
</script>
<!-- /MathJax -->
<script type="text/javascript" src="//codeforces.org/s/23860/js/prettify/prettify.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/moment-with-locales.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/pushstream.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.easing.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.jgrowl.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.swipe.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.hotkeys.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/facebox.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.colorpicker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.table.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.image.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/controls/wysiwyg.link.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.autocomplete.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ie6blocker.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.ba-bbq.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.drafts.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/clipboard.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/autosize.min.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/sjcl.js"></script>
<script type="text/javascript" src="/scripts/a3c2074ccb6f4b67a3c2bb62db02053f/ru/codeforces-options.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/codeforces.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/EventCatcher.js?v=20160131"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/preparedVerdictFormats-ru.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/js/confetti.min.js"></script>
<!--/CombineResourcesFilter-->
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/skins/markitup/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="//codeforces.org/s/23860/markitup/sets/markdown/style.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/jquery.markitup.js"></script>
<script type="text/javascript" src="//codeforces.org/s/23860/markitup/sets/markdown/set.js"></script>
<!--[if IE]>
<style>
#sidebar {
padding-left: 1em;
margin: 1em 1em 1em 0;
}
</style>
<![endif]-->
<script type="text/javascript" src="//codeforces.org/s/23860/js/jquery.datepick-ru.js"></script>
</head>
<body class=" "><span style='display:none;' class='csrf-token' data-csrf='a634c1a458a32f00333debd3fb662650'> </span>
<!-- .notificationTextCleaner used in Codeforces.showAnnouncements() -->
<div class="notificationTextCleaner" style="font-size: 0"></div>
<div class="button-up" style="display: none; opacity: 0.7; width: 50px; height:100%; position: fixed; left: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 3.0rem;"><i class="icon-circle-arrow-up"></i></div>
<div class="verdictPrototypeDiv" style="display: none;"></div>
<!-- Codeforces JavaScripts. -->
<script type="text/javascript">
String.prototype.hashCode = function() {
var hash = 0, i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};
var queryMobile = Codeforces.queryString.mobile;
if (queryMobile === "true" || queryMobile === "false") {
Codeforces.putToStorage("useMobile", queryMobile === "true");
} else {
var useMobile = Codeforces.getFromStorage("useMobile");
if (useMobile === true || useMobile === false) {
if (useMobile != false) {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", useMobile));
}
}
}
</script>
<script type="text/javascript">
if (window.parent.frames.length > 0) {
window.stop();
}
</script>
<script type="text/javascript">
$(document).ready(function () {
(function () {
jQuery.expr[':'].containsCI = function(elem, index, match) {
return !match || !match.length || match.length < 4 || !match[3] || (
elem.textContent || elem.innerText || jQuery(elem).text() || ''
).toLowerCase().indexOf(match[3].toLowerCase()) >= 0;
}
}(jQuery));
$.ajaxPrefilter(function(options, originalOptions, xhr) {
var csrf = Codeforces.getCsrfToken();
if (csrf) {
var data = originalOptions.data;
if (originalOptions.data !== undefined) {
if (Object.prototype.toString.call(originalOptions.data) === '[object String]') {
data = $.deparam(originalOptions.data);
}
} else {
data = {};
}
options.data = $.param($.extend(data, { csrf_token: csrf }));
}
});
window.getCodeforcesServerTime = function(callback) {
$.post("/data/time", {}, callback, "json");
}
window.updateTypography = function () {
$("div.ttypography code").addClass("tt");
$("div.ttypography pre>code").addClass("prettyprint").removeClass("tt");
$("div.ttypography table").addClass("bordertable");
prettyPrint();
}
$.ajaxSetup({ scriptCharset: "utf-8" ,contentType: "application/x-www-form-urlencoded; charset=UTF-8", headers: {
'X-Csrf-Token': Codeforces.getCsrfToken()
}});
window.updateTypography();
Codeforces.signForms();
setTimeout(function() {
$(".second-level-menu-list").lavaLamp({
fx: "backout",
speed: 700
});
}, 100);
Codeforces.countdown();
$("a[rel='photobox']").colorbox();
function showAnnouncements(json) {
//info("j=" + JSON.stringify(json));
if (json.t != "a") {
return;
}
setTimeout(function() {
Codeforces.showAnnouncements(json.d, "ru");
}, Math.random() * 500);
}
function showEventCatcherUserMessage(json) {
if (json.t == "s") {
var points = json.d[5];
var passedTestCount = json.d[7];
var judgedTestCount = json.d[8];
var verdict = preparedVerdictFormats[json.d[12]];
var verdictPrototypeDiv = $(".verdictPrototypeDiv");
verdictPrototypeDiv.html(verdict);
if (judgedTestCount != null && judgedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-judged").text(judgedTestCount);
}
if (passedTestCount != null && passedTestCount != undefined) {
verdictPrototypeDiv.find(".verdict-format-passed").text(passedTestCount);
}
if (points != null && points != undefined) {
verdictPrototypeDiv.find(".verdict-format-points").text(points);
}
Codeforces.showMessage(verdictPrototypeDiv.text());
}
}
$(".clickable-title").each(function() {
var title = $(this).attr("data-title");
if (title) {
var tmp = document.createElement("DIV");
tmp.innerHTML = title;
$(this).attr("title", tmp.textContent || tmp.innerText || "");
}
});
$(".clickable-title").click(function() {
var title = $(this).attr("data-title");
if (title) {
Codeforces.alert(title);
} else {
Codeforces.alert($(this).attr("title"));
}
}).css("position", "relative").css("bottom", "3px");
Codeforces.showDelayedMessage();
Codeforces.reformatTimes();
//Codeforces.initializePubSub();
if (window.codeforcesOptions.subscribeServerUrl) {
window.eventCatcher = new EventCatcher(
window.codeforcesOptions.subscribeServerUrl,
[
Codeforces.getGlobalChannel(),
Codeforces.getUserChannel(),
Codeforces.getUserShowMessageChannel(),
Codeforces.getContestChannel(),
Codeforces.getParticipantChannel(),
Codeforces.getTalkChannel()
]
);
if (Codeforces.getParticipantChannel()) {
window.eventCatcher.subscribe(Codeforces.getParticipantChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getContestChannel()) {
window.eventCatcher.subscribe(Codeforces.getContestChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getGlobalChannel()) {
window.eventCatcher.subscribe(Codeforces.getGlobalChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserChannel(), function(json) {
showAnnouncements(json);
});
}
if (Codeforces.getUserShowMessageChannel()) {
window.eventCatcher.subscribe(Codeforces.getUserShowMessageChannel(), function(json) {
showEventCatcherUserMessage(json);
});
}
}
Codeforces.setupContestTimes("/data/contests");
Codeforces.setupSpoilers();
Codeforces.setupTutorials("/data/problemTutorial");
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-743380-5']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = (document.location.protocol == 'https:' ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div id="body">
<div class="side-bell" style="visibility: hidden; display: none; opacity: 0.7; width: 40px; position: fixed; right: 0; top: 0; cursor: pointer; text-align: center; line-height: 35px; color: #d3dbe4; font-weight: bold; font-size: 1.5rem;">
<span class="icon-stack" style="width: 100%;">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-bell-alt icon-light"></i>
</span>
<br/>
<span class="side-bell__count" style="position: relative; top: -10px;"></span>
</div>
<div id="header" style="position: relative;">
<div style="float:left; max-height: 60px;">
<a href="/"><img height="65" style="height: 65px;" alt="Codeforces" title="Codeforces" src="//codeforces.org/s/23860/images/codeforces-sponsored-by-ton.png"/></a>
</div>
<div class="lang-chooser">
<div style="text-align: right;">
<a href="?locale=en"><img src="//codeforces.org/s/23860/images/flags/24/gb.png" title="In English" alt="In English"/></a>
<a href="?locale=ru"><img src="//codeforces.org/s/23860/images/flags/24/ru.png" title="По-русски" alt="По-русски"/></a>
</div>
<div >
<a href="/enter?back=%2Fcontest%2F1567%2Fproblem%2FF%3Flocale%3Dru">Войти</a>
|
<a href="/register">Зарегистрироваться</a>
</div>
</div>
<br style="clear: both;"/>
</div>
<div class="roundbox menu-box borderTopRound borderBottomRound" style="">
<div class="menu-list-container">
<ul class="menu-list main-menu-list">
<li class=""><a href="/">Главная</a></li>
<li class=""><a href="/top">Топ</a></li>
<li class=""><a href="/catalog">Каталог</a></li>
<li class="current"><a href="/contests">Соревнования</a></li>
<li class=""><a href="/gyms">Тренировки</a></li>
<li class=""><a href="/problemset">Архив</a></li>
<li class=""><a href="/groups">Группы</a></li>
<li class=""><a href="/ratings">Рейтинг</a></li>
<li class=""><a href="/edu/courses"><span class="edu-menu-item">Edu</span></a></li>
<li class=""><a href="/apiHelp">API</a></li>
<li class=""><a href="/calendar">Календарь</a></li>
<li class=""><a href="/help">Помощь</a></li>
</ul>
<form method="post" action="/search"><input type='hidden' name='csrf_token' value='a634c1a458a32f00333debd3fb662650'/>
<input class="search" name="query" data-isPlaceholder="true" value=""/>
</form>
<br style="clear: both;"/>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("input.search").focus(function () {
if ($(this).attr("data-isPlaceholder") === "true") {
$(this).val("");
$(this).removeAttr("data-isPlaceholder");
}
});
});
</script>
<br style="height: 3em; clear: both;"/>
<div style="position: relative;">
<div id="sidebar">
<div class="roundbox sidebox borderTopRound " style="">
<table class="rtable ">
<tbody>
<tr>
<th class="left" style="width:100%;"><a style="color: black" href="/contest/1567">Codeforces Round 742 (Div. 2)</a></th>
</tr>
<tr>
<td class="left bottom" colspan="1"><span class="contest-state-phase">Закончено</span></td>
</tr>
</tbody>
</table>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Дорешивание?
<div class="top-links">
</div>
</div>
<div>
<div style="margin:1em;font-size:0.8em;">
Хотите дорешать задачи? Просто зарегистрируйтесь на дорешивание.
</div>
<div style="text-align:center;margin:1em;">
<form action="" method="post"><input type='hidden' name='csrf_token' value='a634c1a458a32f00333debd3fb662650'/>
<input type="hidden" name="action" value="registerForPractice"/>
<input type="submit" name="submit" value="Зарегистрироваться" style="padding:0 0.5em;">
</form>
</div>
</div>
</div>
<div class="roundbox sidebox ContestVirtualFrame borderTopRound " style="">
<div class="caption titled">→ Виртуальное участие <i class="sidebar-caption-icon las la-angle-down"></i>
<div class="top-links">
</div>
</div>
<div style=" "
data-page-url="/data/sidebarFrames"
>
<div style="margin:1em;font-size:0.8em;">
Виртуальное соревнование – это способ прорешать прошедшее соревнование в режиме, максимально близком к участию во время его проведения. Поддерживается только ICPC режим для виртуальных соревнований.
Если вы раньше видели эти задачи,
виртуальное соревнование не для вас – решайте эти задачи в архиве.
Если вы хотите просто дорешать задачи, виртуальное соревнование не для вас – решайте эти задачи в архиве.
Запрещается использовать чужой код, читать разборы задач и общаться по содержанию соревнования с кем-либо.
</div>
<div style="text-align:center;margin:1em;">
<form action="/contest/1567/virtual" method="get">
<input type="submit" name="submit" value="Начать виртуальное участие" style="padding:0 0.5em;">
</form>
</div>
</div>
<script>
$(function () {
$(".ContestVirtualFrame .sidebar-caption-icon").click(function() {
$(this).toggleClass("la-angle-down la-angle-right");
const $target = $(this).parent().next();
$target.toggle();
const dataPageUrl = $target.attr("data-page-url");
const collapsed = $(this).hasClass("la-angle-right");
const params = {
action: "setCollapsed",
sidebarFrameSimpleClassName: "ContestVirtualFrame",
collapsed
};
$.each($target[0].attributes, function(i, a) {
const name = a.name;
if (name.startsWith("data-extra-key-")) {
const key = a.value;
const keyIndex = parseInt(name.substring("data-extra-key-".length));
const value = $target.attr("data-extra-value-" + keyIndex);
params[key] = value;
}
});
$.post(dataPageUrl, params, function (result) {
if (result["success"] !== "true") {
Codeforces.showMessage("Не удалось сохранить состояние блока.");
}
}, "json");
return false;
});
})
</script>
</div>
<div class="roundbox sidebox borderTopRound " style="">
<div class="caption titled">→ Теги задачи
<div class="top-links">
</div>
</div>
<div style="padding: 0.5em;">
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="2-SAT (2-satisfiability)">
2-sat
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Графы">
графы
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Конструктивные алгоритмы">
конструктив
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Поиск в глубину и подобные алгоритмы">
поиск в глубину и подобное
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Реализация, техника программирования, симуляция">
реализация
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Система непересекающихся множеств">
снм
</span>
</div>
<div class="roundbox borderTopRound borderBottomRound" style="margin:2px; padding:0 3px 2px 3px; background-color:#f0f0f0;float:left;">
<span class="tag-box" style="font-size:1.2rem;" title="Сложность">
*2700
</span>
</div>
<div style="clear:both;text-align:right;font-size:1.1rem;">
<span title="Пожалуйста, войдите в систему" class="notice">Нет прав на редактирование</span>
</div>
</div>
</div>
<form id="addTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='a634c1a458a32f00333debd3fb662650'/>
<input name="action" type="hidden" value="addTag"/>
<input name="problemId" type="hidden" value="1099178"/>
<input name="tagName" type="hidden" value=""/>
</form>
<form id="removeTagForm" action="/data/problemTags" method="post" style="display:none;"><input type='hidden' name='csrf_token' value='a634c1a458a32f00333debd3fb662650'/>
<input name="action" type="hidden" value="removeTag"/>
<input name="problemId" type="hidden" value="1099178"/>
<input name="tagName" type="hidden" value=""/>
</form>
<script type="text/javascript">
$(".tag-box img").click(function () {
var tagName = $(this).attr("value");
Codeforces.confirm("Вы уверены, что хотите удалить этот тег?", function () {
$("#removeTagForm input[name=tagName]").val(tagName);
$("#removeTagForm").submit();
}, function () {
}, "Да", "Нет");
});
$("#addTagLink").click(function () {
$(this).hide();
$("#addTagLabel").show();
return false;
});
$("#addTagSelect").change(function () {
var tagName = $(this).val();
if (tagName === "") {
$("#addTagLabel").hide();
$("#addTagLink").show();
} else {
$("#addTagForm input[name=tagName]").val(tagName);
$("#addTagForm").submit();
}
});
</script>
<style type="text/css">
#new-resource-form tr td {
padding-top: 0.5em;
}
#new-resource-form input:not([type="submit"]) {
font-size: 0.8em;
}
#new-resource-form select {
font-size: 0.8em;
}
.new-resource-error {
font-size: 0.8em;
}
.resource-locale {
color: #666;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
}
</style>
<div class="roundbox sidebox sidebar-menu borderTopRound " style="">
<div class="caption titled">→ Материалы соревнования
<div class="top-links">
</div>
</div>
<ul>
<li>
<span>
<a href="/blog/entry/94468" title="Codeforces Round #742 (Div. 2)" target="_blank">Анонс <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14291" resourceName="Codeforces Round #742 (Div. 2)"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
<li>
<span>
<a href="/blog/entry/94581" title="Codeforces Round #742 Editorial" target="_blank">Разбор задач <span class="resource-locale">(англ.)</span></a>
</span>
<span style="float: right;">
<img class="delete-resource-link" resourceIds="14302" resourceName="Codeforces Round #742 Editorial"
resourceManual="true" src="//codeforces.org/s/23860/images/icons/close-10x10.png"
style="position: relative;bottom: -1px;left: 1px;cursor: pointer;"/>
</span>
<div style="clear: both;"></div>
</li>
</ul>
</div></div>
<div id="pageContent" class="content-with-sidebar">
<div class="second-level-menu">
<ul class="second-level-menu-list">
<li class="current selectedLava"><a
href="/contest/1567">Задачи</a></li>
<li><a
href="/contest/1567/submit">Отослать</a></li>
<li><a
href="/contest/1567/my">Мои посылки</a></li>
<li><a
href="/contest/1567/status">Статус</a></li>
<li><a
href="/contest/1567/hacks">Взломы</a></li>
<li><a
href="/contest/1567/room/1">Комната</a></li>
<li><a
href="/contest/1567/standings">Положение</a></li>
<li><a
href="/contest/1567/customtest">Запуск</a></li>
</ul>
</div>
<style>
#facebox .content:has(.diff-popup) {
width: 90vw;
max-width: 120rem !important;
}
.testCaseMarker {
position: absolute;
font-weight: bold;
font-size: 1rem;
}
.diff-popup {
width: 90vw;
max-width: 120rem !important;
display: none;
overflow: auto;
}
.input-output-copier {
font-size: 1.2rem;
float: right;
color: #888 !important;
cursor: pointer;
border: 1px solid rgb(185, 185, 185);
padding: 3px;
margin: 1px;
line-height: 1.1rem;
text-transform: none;
}
.input-output-copier:hover {
background-color: #def;
}
.test-explanation textarea {
width: 100%;
height: 1.5em;
}
.pending-submission-message {
color: darkorange !important;
}
</style>
<script>
const OPENING_SPACE = String.fromCharCode(1001);
const CLOSING_SPACE = String.fromCharCode(1002);
const nodeToText = function (node, pre) {
let result = [];
if (node.tagName === "SCRIPT" || node.tagName === "math"
|| (node.classList && node.classList.contains("input-output-copier")))
return [];
if (node.tagName === "NOBR") {
result.push(OPENING_SPACE);
}
if (node.nodeType === Node.TEXT_NODE) {
let s = node.textContent;
if (!pre) {
s = s.replace(/\s+/g, " ");
}
if (s.length > 0) {
result.push(s);
}
}
if (pre && node.tagName === "BR") {
result.push("\n");
}
node.childNodes.forEach(function (child) {
result.push(nodeToText(child, node.tagName === "PRE").join(""));
});
if (node.tagName === "DIV"
|| node.tagName === "P"
|| node.tagName === "PRE"
|| node.tagName === "UL"
|| node.tagName === "LI"
) {
result.push("\n");
}
if (node.tagName === "NOBR") {
result.push(CLOSING_SPACE);
}
return result;
}
const isSpecial = function (c) {
return c === ',' || c === '.' || c === ';' || c === ')' || c === ' ';
}
const convertStatementToText = function(statmentNode) {
const text = nodeToText(statmentNode, false).join("").replace(/ +/g, " ").replace(/\n\n+/g, "\n\n");
let result = [];
for (let i = 0; i < text.length; i++) {
const c = text.charAt(i);
if (c === OPENING_SPACE) {
if (!((i > 0 && text.charAt(i - 1) === '(') || (result.length > 0 && result[result.length - 1] === ' '))) {
result.push('+');
}
} else if (c === CLOSING_SPACE) {
if (!(i + 1 < text.length && isSpecial(text.charAt(i + 1)))) {
result.push('-');
}
} else {
result.push(c);
}
}
return result.join("").split("\n").map(value => value.trim()).join("\n");
};
</script>
<div class="diff-popup">
</div>
<div class="problemindexholder" problemindex="F" data-uuid="ps_2c73fa17f809b5ca51525950ab2b2ce7a8944987">
<div style="display: none; margin:1em 0;text-align: center; position: relative;" class="alert alert-info diff-notifier">
<div>Условие задачи было недавно изменено. <a class="view-changes" href="#">Просмотреть изменения.</a></div>
<span class="diff-notifier-close" style="position: absolute; top: 0.2em; right: 0.3em; cursor: pointer; font-size: 1.4em;">×</span>
</div>
<div class="ttypography"><div class="problem-statement"><div class="header"><div class="title">F. Непереводимое название</div><div class="time-limit"><div class="property-title">ограничение по времени на тест</div>2 секунды</div><div class="memory-limit"><div class="property-title">ограничение по памяти на тест</div>256 мегабайт</div><div class="input-file"><div class="property-title">ввод</div>стандартный ввод</div><div class="output-file"><div class="property-title">вывод</div>стандартный вывод</div></div><div><p>У Алисы есть пустое поле из $$$n$$$ строк и $$$m$$$ столбцов. Некоторые клетки этого поля помечены, и <span class="tex-font-style-bf">ни одна помеченная клетка не касается края поля</span>. (Две клетки считаются <span class="tex-font-style-it">соседними</span>, если они касаются по стороне.) </p><p>Алиса хочет записать в каждую клетку число так, чтобы они удовлетворяли следующим условиям: </p><ul> <li> в каждой <span class="tex-font-style-it">непомеченной</span> клетке записано либо $$$1$$$, либо $$$4$$$; </li><li> в каждой <span class="tex-font-style-it">помеченной</span> клетке записана сумма чисел всех соседних <span class="tex-font-style-bf">непомеченных</span> клеток (если у помеченной вершины нет соседних непомеченных, то сумма равна $$$0$$$); </li><li> в каждой <span class="tex-font-style-it">помеченной</span> клетке записанное число делится на $$$5$$$. </li></ul> Не придумав ничего, Алиса решила попросить помощи у Боба. Помогите Бобу найти любое подходящее заполнение поля, или определить, что такого поля не существует.</div><div class="input-specification"><div class="section-title">Входные данные</div><p>В первой строке заданы два целых числа $$$n$$$ и $$$m$$$ ($$$1 \leq n, m \leq 500$$$) — количество строк и столбцов поля, соответственно.</p><p>Далее следуют $$$n$$$ строк, каждая состоит из $$$m$$$ символов. Каждый символ — это «<span class="tex-font-style-tt">.</span>» или «<span class="tex-font-style-tt">X</span>» — непомеченная или помеченная клетка, соответственно. <span class="tex-font-style-bf">Ни одна помеченная клетка не касается краев поля.</span></p></div><div class="output-specification"><div class="section-title">Выходные данные</div><p>Выведите «<span class="tex-font-style-tt">NO</span>», если не существует подходящего заполнения. В противном случае выведите «<span class="tex-font-style-tt">YES</span>». Далее выведите $$$n$$$ строк по $$$m$$$ целых чисел через пробел — числа в клетках поля.</p></div><div class="sample-tests"><div class="section-title">Примеры</div><div class="sample-test"><div class="input"><div class="title">Входные данные</div><pre>
5 5
.....
.XXX.
.X.X.
.XXX.
.....
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 1 4 4 1
4 5 5 5 1
4 5 1 5 4
1 5 5 5 4
1 4 4 1 4
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
5 5
.....
.XXX.
.XXX.
.XXX.
.....
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
NO
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
3 2
..
..
..
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 1
4 1
1 4
</pre></div><div class="input"><div class="title">Входные данные</div><pre>
9 9
.........
.XXXXX.X.
.X...X...
.X.XXXXX.
.X.X.X.X.
.X.XXX.X.
.X.....X.
.XXXXXXX.
.........
</pre></div><div class="output"><div class="title">Выходные данные</div><pre>
YES
4 4 4 1 4 1 4 1 4
1 5 5 5 5 5 4 10 1
4 5 1 4 1 5 4 4 4
4 5 1 5 5 0 5 5 1
4 5 1 5 4 5 1 5 4
4 5 1 5 5 5 4 5 1
1 5 4 4 1 1 4 5 1
4 5 5 5 5 5 5 5 4
1 1 1 1 4 4 1 1 4
</pre></div></div></div><div class="note"><div class="section-title">Примечание</div><p>Можно показать, что во втором примере не существует подходящего заполнения.</p></div></div><p> </p></div>
</div>
<script>
$(function () {
Codeforces.addMathJaxListener(function () {
let $problem = $("div[problemindex=F]");
let uuid = $problem.attr("data-uuid");
let statementText = convertStatementToText($problem.find(".ttypography").get(0));
let previousStatementText = Codeforces.getFromStorage(uuid);
if (previousStatementText) {
if (previousStatementText !== statementText) {
$problem.find(".diff-notifier").show();
$problem.find(".diff-notifier-close").click(function() {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
$problem.find(".diff-notifier").hide();
});
$problem.find("a.view-changes").click(function() {
$.post("/data/diff", {action: "getDiff", a: previousStatementText, b: statementText}, function (result) {
if (result["success"] === "true") {
Codeforces.facebox(".diff-popup", "//codeforces.org/s/23860");
$("#facebox .diff-popup").html(result["diff"]);
}
}, "json");
});
}
} else {
Codeforces.putToStorageTtl(uuid, statementText, 6 * 60 * 60);
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
window.changedTests = new Set();
function endsWith(string, suffix) {
return string.indexOf(suffix, string.length - suffix.length) !== -1;
}
const inputFileDiv = $("div.input-file");
const inputFile = inputFileDiv.text();
const outputFileDiv = $("div.output-file");
const outputFile = outputFileDiv.text();
if (!endsWith(inputFile, "стандартный ввод")
&& !endsWith(inputFile, "standard input")) {
inputFileDiv.attr("style", "font-weight: bold");
}
if (!endsWith(outputFile, "стандартный вывод")
&& !endsWith(outputFile, "standard output")) {
outputFileDiv.attr("style", "font-weight: bold");
}
const titleDiv = $("div.header div.title");
String.prototype.replaceAll = function (search, replace) {
return this.split(search).join(replace);
};
$(".sample-test .title").each(function () {
const preId = ("id" + Math.random()).replaceAll(".", "0");
const cpyId = ("id" + Math.random()).replaceAll(".", "0");
$(this).parent().find("pre").attr("id", preId);
const $copy = $("<div title='Скопировать' data-clipboard-target='#" + preId + "' id='" + cpyId + "' class='input-output-copier'>Скопировать</div>");
$(this).append($copy);
const clipboard = new Clipboard('#' + cpyId, {
text: function (trigger) {
const pre = document.querySelector('#' + preId);
const lines = pre.querySelectorAll(".test-example-line");
return Codeforces.filterClipboardText(pre.innerText, lines.length);
}
});
const isInput = $(this).parent().hasClass("input");
clipboard.on('success', function (e) {
if (isInput) {
Codeforces.showMessage("Входные данные были скопированы в буфер обмена");
} else {
Codeforces.showMessage("Выходные данные были скопированы в буфер обмена");
}
e.clearSelection();
});
});
$(".test-form-item input").change(function () {
addPendingSubmissionMessage($($(this).closest("form")), "Вы изменили ответ, не забудьте его отправить, если вы хотите сохранить изменения");
const index = $(this).closest(".problemindexholder").attr("problemindex");
let test = "";
$(this).closest("form input").each(function () {
const test_ = $(this).attr("name");
if (test_ && test_.substring(0, 4) === "test") {
test = test_;
}
});
if (index.length > 0 && test.length > 0) {
const indexTest = index + "::" + test;
window.changedTests.add(indexTest);
}
});
$(window).on('beforeunload', function () {
if (window.changedTests.size > 0) {
return 'Dialog text here';
}
});
autosize($('.test-explanation textarea'));
$(".test-example-line").hover(function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
let top = 1E20;
let left = 1E20;
let problem = $(this).closest(".problemindexholder");
$(this).closest(".input").find("." + clazz).css("background-color", "#FFFDE7").each(function() {
top = Math.min(top, $(this).offset().top);
left = Math.min(left, $(this).offset().left);
});
let testCaseMarker = problem.find(".testCaseMarker_" + end);
if (testCaseMarker.length === 0) {
const html = "<div class=\"testCaseMarker testCaseMarker_" + end + " notice\"></div>";
problem.append($(html));
testCaseMarker = problem.find(".testCaseMarker_" + end);
}
if (testCaseMarker) {
testCaseMarker.show()
.offset({top, left: left - 20})
.text(end);
}
}
}
});
}, function() {
$(this).attr("class").split(" ").forEach((clazz) => {
if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") {
let end = clazz.substr("test-example-line-".length);
if (end !== "even" && end !== "odd" && end !== "0") {
$("." + clazz).css("background-color", "");
$(this).closest(".problemindexholder").find(".testCaseMarker_" + end).hide();
}
}
});
});
});
</script>
</div>
</div>
<br style="clear: both;"/>
<div id="footer">
<div><a href="https://codeforces.com/">Codeforces</a> (c) Copyright 2010-2023 Михаил Мирзаянов</div>
<div>Соревнования по программированию 2.0</div>
<div>Время на сервере: <span class="format-timewithseconds" data-locale="ru">07.10.2023 11:33:19</span> (i1).</div>
<div>Десктопная версия, переключиться на <a rel="nofollow" class="switchToMobile" href="?mobile=true">мобильную</a>.</div>
<div class="smaller"><a href="/privacy">Privacy Policy</a></div>
<div style="margin-top: 25px;">
При поддержке
</div>
<div style="margin-top: 8px; padding-bottom: 20px; position: relative; left: 10px;">
<a href="https://ton.org/"><img style="margin-right: 2em; width: 60px;" src="//codeforces.org/s/23860/images/ton-100x100.png" alt="TON" title="TON"/></a>
<a href="http://ifmo.ru/ru/"><img style="width: 130px;" src="//codeforces.org/s/23860/images/itmo_small_ru-logo.png" alt="ИТМО" title="ИТМО"/></a>
</div>
</div>
<script type="text/javascript">
$(function() {
$(".switchToMobile").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "true"));
return false;
});
$(".switchToDesktop").click(function() {
Codeforces.redirect(Codeforces.updateUrlParameter(document.location.href, "mobile", "false"));
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function () {
if ($(window).width() < 1600) {
$('.button-up').css('width', '30px').css('line-height', '30px').css('font-size', '20px');
}
if ($(window).width() >= 1200) {
$ (window).scroll (function () {
if ($ (this).scrollTop () > 100) {
$ ('.button-up').fadeIn();
} else {
$ ('.button-up').fadeOut();
}
});
$('.button-up').click(function () {
$('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
$('.button-up').hover(function () {
$(this).animate({
'opacity':'1'
}).css({'background-color':'#e7ebf0','color':'#6a86a4'});
}, function () {
$(this).animate({
'opacity':'0.7'
}).css({'background':'none','color':'#d3dbe4'});;
});
}
Codeforces.focusOnError();
});
</script>
<div class="userListsFacebox" style="display:none;">
<div style="padding: 0.5em; width: 600px; max-height: 200px; overflow-y: auto">
<div class="datatable"
style="background-color: #E1E1E1; padding-bottom: 3px;">
<div class="lt"> </div>
<div class="rt"> </div>
<div class="lb"> </div>
<div class="rb"> </div>
<div style="padding: 4px 0 0 6px;font-size:1.4rem;position:relative;">
Списки пользователей
<div style="position:absolute;right:0.25em;top:0.35em;">
<span style="padding:0;position:relative;bottom:2px;" class="rowCount"></span>
<img class="closed" src="//codeforces.org/s/23860/images/icons/control.png"/>
<span class="filter" style="display:none;">
<img class="opened" src="//codeforces.org/s/23860/images/icons/control-270.png"/>
<input style="padding:0 0 0 20px;position:relative;bottom:2px;border:1px solid #aaa;height:17px;font-size:1.3rem;"/>
</span>
</div>
</div>
<div style="background-color: white;margin:0.3em 3px 0 3px;position:relative;">
<div class="ilt"> </div>
<div class="irt"> </div>
<table class="">
<thead>
<tr>
<th>Название</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
// Create new ':containsIgnoreCase' selector for search
jQuery.expr[':'].containsIgnoreCase = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
if (window.updateDatatableFilter == undefined) {
window.updateDatatableFilter = function(i) {
var parent = $(i).parent().parent().parent().parent();
$("tr.no-items", parent).remove();
$("tr", parent).hide().removeClass('visible');
var text = $(i).val();
if (text) {
$("tr" + ":containsIgnoreCase('" + text + "')", parent).show().addClass('visible');
} else {
parent.find(".rowCount").text("");
$("tr", parent).show().addClass('visible');
}
var found = false;
var visibleRowCount = 0;
$("tr", parent).each(function () {
if (!found) {
if ($(this).find("th").size() > 0) {
$(this).show().addClass('visible');
found = true;
}
}
if ($(this).hasClass('visible')) {
visibleRowCount++;
}
});
if (text) {
parent.find(".rowCount").text("Совпадений: " + (visibleRowCount - (found ? 1 : 0)));
}
if (visibleRowCount == (found ? 1 : 0)) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo($(parent).find('table'));
}
$(parent).find("tr td").removeClass("dark");
$(parent).find("tr.visible:odd td").addClass("dark");
}
$(".datatable .closed").click(function () {
var parent = $(this).parent();
$(this).hide();
$(".filter", parent).fadeIn(function () {
$("input", parent).val("").focus().css("border", "1px solid #aaa");
});
});
$(".datatable .opened").click(function () {
var parent = $(this).parent().parent();
$(".filter", parent).fadeOut(function () {
$(".closed", parent).show();
$("input", parent).val("").each(function () {
window.updateDatatableFilter(this);
});
});
});
$(".datatable .filter input").keyup(function(e) {
window.updateDatatableFilter(this);
e.preventDefault();
e.stopPropagation();
});
$(".datatable table").each(function () {
var found = false;
$("tr", this).each(function () {
if (!found && $(this).find("th").size() == 0) {
found = true;
}
});
if (!found) {
$("<tr class='no-items visible'><td style=\"text-align:left;\"colspan=\"32\">Нет данных<\/td><\/tr>").appendTo(this);
}
});
// Applies styles to datatables.
$(".datatable").each(function () {
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
$(".datatable table.tablesorter").each(function () {
$(this).bind("sortEnd", function () {
$(".datatable").each(function () {
$(this).find("th, td")
.removeClass("top").removeClass("bottom")
.removeClass("left").removeClass("right")
.removeClass("dark");
$(this).find("tr:first th").addClass("top");
$(this).find("tr:last td").addClass("bottom");
$(this).find("tr:odd td").addClass("dark");
$(this).find("tr td:first-child, tr th:first-child").addClass("left");
$(this).find("tr td:last-child, tr th:last-child").addClass("right");
});
});
});
}
});
</script>
</div>
</div>
<script type="application/javascript">
$(function() {
$(".userListMarker").click(function() {
$.post("/data/lists", {action: "findTouched"}, function(json) {
Codeforces.facebox(".userListsFacebox");
var tbody = $("#facebox tbody");
tbody.empty();
for (var i in json) {
tbody.append(
$("<tr></tr>").append(
$("<td></td>").attr("data-readKey", json[i].readKey).text(json[i].name)
)
);
}
Codeforces.updateDatatables();
tbody.find("td").css("cursor", "pointer").click(function() {
document.location = Codeforces.updateUrlParameter(document.location.href, "list", $(this).attr("data-readKey"));
});
}, "json");
});
});
</script>
</div>
<script type="application/javascript">
if ('serviceWorker' in navigator && 'fetch' in window && 'caches' in window) {
navigator.serviceWorker.register('/service-worker-23860.js')
.then(function (registration) {
console.log('Service worker registered: ', registration);
})
.catch(function (error) {
console.log('Registration failed: ', error);
});
}
</script>
<script>(function(){var js = "window['__CF$cv$params']={r:'8124cc706afc7b33',t:'MTY5NjY2NzU5OS41MDgwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script></body>
</html>
| ["2-SAT (2-satisfiability)", "\u0413\u0440\u0430\u0444\u044b", "\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b", "\u041f\u043e\u0438\u0441\u043a \u0432 \u0433\u043b\u0443\u0431\u0438\u043d\u0443 \u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b", "\u0420\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f, \u0442\u0435\u0445\u043d\u0438\u043a\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0441\u0438\u043c\u0443\u043b\u044f\u0446\u0438\u044f", "\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043d\u0435\u043f\u0435\u0440\u0435\u0441\u0435\u043a\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432", "\u0421\u043b\u043e\u0436\u043d\u043e\u0441\u0442\u044c"] | ["2-sat", "\u0433\u0440\u0430\u0444\u044b", "\u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u0438\u0432", "\u043f\u043e\u0438\u0441\u043a \u0432 \u0433\u043b\u0443\u0431\u0438\u043d\u0443 \u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0435", "\u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f", "\u0441\u043d\u043c", "*2700"] |