Submission #742399

#TimeUsernameProblemLanguageResultExecution timeMemory
742399kxdGardening (RMI21_gardening)C++17
0 / 100
23 ms832 KiB
#include <bits/stdc++.h> #define int long long #define ll unsigned long long #define pb push_back #define p_q priority_queue #define m_p make_pair #define pii pair<int,int> #define endl '\n' #define INIT ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define FOR(i, a, b) for(int i = a; i <= b; i++) #define forn(i, n) for (int i = 0; i < n; i++) #define forn1(i, n) for (int i = 1; i <= n; i++) #define all(x) x.begin(),x.end() #define ft first #define sd second #define p(x) cout << x << endl; using namespace std; const int N = 1e5+5; const int inf = 1e9; const int INF = 1e18; const int MOD = 1e9+7; bool f(int n, int m, int k) { if(k*4>n*m) return 0; if(n%2!=0||m%2!=0) return 0; if(n==2) { if(k==m/2) { p("YES"); forn1(i,k) { cout << i << ' ' << i << ' '; } cout << endl; forn1(i,k) { cout << i << ' ' << i << ' '; } cout << endl; return 1; } else return 0; } else { if(m==k) { p("YES"); forn1(i,m/2) { cout << i << ' ' << i << ' '; } cout << endl; forn1(i,m/2) { cout << i << ' ' << i << ' '; } cout << endl; forn1(i,m/2) { cout << i+m/2 << ' ' << i+m/2 << ' '; } cout << endl; forn1(i,m/2) { cout << i+m/2 << ' ' << i+m/2 << ' '; } cout << endl; return 1; } else { if(k==m/2) { p("YES"); p("1 1 1 1"); p("1 2 2 1"); p("1 2 2 1"); p("1 1 1 1"); return 1; } else { return 0; } } } } signed main() { INIT int T; cin >> T; while(T--) { int n, m, k; cin >> n >> m >> k; if(!f(n,m,k)) cout << "NO" << endl; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...