QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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.
Details
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]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~