QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#50751#892. Minimal CutCrysflyCompile Error//C++11266b2022-09-29 09:02:212022-09-29 09:02:23

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-09-29 09:02:23]
  • 评测
  • [2022-09-29 09:02:21]
  • 提交

answer

先转化成最小割树,也就是解决:在线询问 n 次 i,j 最小割
发现1e9的大环只会割2条边,可以摆在二维坐标上 
摆在矩形上,就是 先做m次矩形加,再n次在线查询min
套用,rprmq1 把线段树可持久化即可。

Details

answer.code:4:14: error: extended character 。 is not valid in an identifier
    4 | 套用,rprmq1 把线段树可持久化即可。
      |              ^
answer.code:1:1: error: ‘先转化成最小割树,也就是解决:在线询问’ does not name a type
    1 | 先转化成最小割树,也就是解决:在线询问 n 次 i,j 最小割
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~