QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#76878 | #1256. Delete Two Vertices Again | Minneapolis | Compile Error | / | / | C++14 | 2.6kb | 2023-02-12 15:02:06 | 2023-02-12 15:02:13 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code: In function ‘void dfs2(int, int)’: answer.code:85:8: error: ‘sort’ is not a member of ‘std’ 85 | std::sort(ae.begin(), ae.end()); | ^~~~ answer.code:86:8: error: ‘sort’ is not a member of ‘std’ 86 | std::sort(ce.begin(), ce.end()); | ^~~~ answer.code: In function ‘int main()’: answer.code:91:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 91 | scanf("%d%d", &n, &m); | ~~~~~^~~~~~~~~~~~~~~~ answer.code:93:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 93 | scanf("%d%d", &from[i], &to[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~