(UPD: 2024-12-04 14:48 UTC) Judge is not working due to Cloudflare incident. (URL) We can do nothing about it, sorry. After the incident is resolved, we will grade all submissions.

Submission #1118804

#TimeUsernameProblemLanguageResultExecution timeMemory
1118804RequiemCats or Dogs (JOI18_catdog)C++17
0 / 100
16 ms14796 KiB
#include "catdog.h" #include<bits/stdc++.h> //#define int long long #define pb push_back #define fast ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); #define MOD 1000000007 #define inf 1e18 #define fi first #define se second #define FOR(i,a,b) for(int i=a;i<=b;i++) #define FORD(i,a,b) for(int i=a;i>=b;i--) #define sz(a) ((int)(a).size()) #define endl '\n' #define pi 3.14159265359 #define TASKNAME "catdogs" using namespace std; template<typename T> bool maximize(T &res, const T &val) { if (res < val){ res = val; return true; }; return false; } template<typename T> bool minimize(T &res, const T &val) { if (res > val){ res = val; return true; }; return false; } typedef pair<int,int> ii; typedef pair<int,ii> iii; typedef vector<int> vi; /** Cat / Dogs: Cho 1 cây n đỉnh với n - 1 cạnh. Một số đỉnh có màu đỏ / xanh. Tìm tập cạnh tối thiểu sao cho: ==> trên đường đi giữa 1 cặp đỉnh xanh / đỏ bất kì đều tồn tại 1 cạnh trong tập đã chọn **/ const int MAXN = 3e5 + 9; int n; ii edge[MAXN]; vector<int> g[MAXN]; void initialize(int N, vector<int> A, vector<int> B){ } int cat(int u){ } int dog(int u){ } int neighbor(int u){ } /** Warning: Đọc sai đề??? Cận lmao Code imple thiếu case nào không. Limit. **/

Compilation message (stderr)

catdog.cpp: In function 'int cat(int)':
catdog.cpp:43:1: warning: no return statement in function returning non-void [-Wreturn-type]
   43 | }
      | ^
catdog.cpp: In function 'int dog(int)':
catdog.cpp:47:1: warning: no return statement in function returning non-void [-Wreturn-type]
   47 | }
      | ^
catdog.cpp: In function 'int neighbor(int)':
catdog.cpp:51:1: warning: no return statement in function returning non-void [-Wreturn-type]
   51 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...