API Response (JSON)
{
"problem": {
"name": "F. AND Graph",
"description": {
"content": "You are given a set of size $m$ with integer elements between $0$ and $2^{n}-1$ inclusive. Let's build an undirected graph on these integers in the following way: connect two integers $x$ and $y$ with",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 4000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF987F"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You are given a set of size $m$ with integer elements between $0$ and $2^{n}-1$ inclusive. Let's build an undirected graph on these integers in the following way: connect two integers $x$ and $y$ with...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "给你一个大小为 $m$ 的集合,其中的整数元素在 $0$ 到 $2^n - 1$ 之间(包含两端)。我们按照以下方式构建一个无向图:当且仅当 $x & y = 0$ 时,在两个整数 $x$ 和 $y$ 之间连一条边。这里 $&$ 表示按位与运算。请计算该图中连通分量的数量。\n\n输入的第一行包含两个整数 $n$ 和 $m$($0 lt.eq n lt.eq 22$,$1 lt.eq m lt.eq ...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "Let $ S \\subseteq \\{0, 1, \\dots, 2^n - 1\\} $ with $ |S| = m $, and define an undirected graph $ G = (S, E) $ where:\n\n$$\nE = \\{ \\{x, y\\} \\mid x, y \\in S,\\ x \\ne y,\\ x \\mathbin{\\&} y = 0 \\}\n$$\n\nCount th...",
"is_translate": false,
"language": "Formal"
}
]
}