API Response (JSON)
{
"problem": {
"name": "C. Cut 'em all!",
"description": {
"content": "You're given a tree with $n$ vertices. Your task is to determine the maximum possible number of edges that can be removed in such a way that all the remaining connected components will have even size",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 1000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF982C"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You're given a tree with $n$ vertices.\n\nYour task is to determine the maximum possible number of edges that can be removed in such a way that all the remaining connected components will have even size...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "你被给定一棵包含 $n$ 个顶点的树。\n\n你的任务是确定最多可以删除多少条边,使得所有剩余的连通分量的大小均为偶数。\n\n第一行包含一个整数 $n$ ($1 lt.eq n lt.eq 10^5$),表示树的大小。\n\n接下来的 $n - 1$ 行每行包含两个整数 $u$, $v$ ($1 lt.eq u, v lt.eq n$),描述第 $i$ 条边连接的两个顶点。\n\n保证给定的边构成一棵树。\n\n请...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "**Definitions** \nLet $ T = (V, E) $ be a tree with $ n = |V| $ vertices and $ n-1 $ edges.\n\nFor any subset $ E' \\subseteq E $, let $ G' = (V, E \\setminus E') $ be the resulting forest after removing ...",
"is_translate": false,
"language": "Formal"
}
]
}