API Response (JSON)
{
"problem": {
"name": "D. Almost Acyclic Graph",
"description": {
"content": "You are given a [directed graph](https://en.wikipedia.org/wiki/Directed_graph) consisting of _n_ vertices and _m_ edges (each edge is directed, so it can be traversed in only one direction). You are a",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 1000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF915D"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You are given a [directed graph](https://en.wikipedia.org/wiki/Directed_graph) consisting of _n_ vertices and _m_ edges (each edge is directed, so it can be traversed in only one direction). You are a...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "给定一个有向图,包含 #cf_span[n] 个顶点和 #cf_span[m] 条边(每条边都是有向的,只能沿一个方向遍历)。你可以最多删除其中一条边。\n\n能否通过删除至多一条边使该图变为无环图?一个有向图被称为无环图,当且仅当其中不包含任何环(一个非空路径,起点和终点为同一顶点)。\n\n第一行包含两个整数 #cf_span[n] 和 #cf_span[m](#cf_span[2 ≤ n ≤ 500...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "Let $ G = (V, E) $ be a directed graph with $ |V| = n $, $ |E| = m $.\n\n**Goal:** Determine whether there exists an edge $ e \\in E $ such that the graph $ G' = (V, E \\setminus \\{e\\}) $ is acyclic, or w...",
"is_translate": false,
"language": "Formal"
}
]
}