Submission #646622

# Submission time Handle Problem Language Result Execution time Memory
646622 2022-09-30T10:38:00 Z ovidiush11 Gardening (RMI21_gardening) C++14
0 / 100
122 ms 668 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long

void solve()
{
    ll n,m,k;
    cin>>n>>m>>k;
    if(k > floor(n/2) * floor(m/2))
    {
        cout<<"NO"<<endl;
        return ;
    }
    cout<<"YES"<<endl;
    ll x = 0,y = 0,s = 0;
    for(ll i = 0;i < n;i++)
    {
        for(ll j = 0;j < m;j+=2)
        {
            if(y != k)y++;
            cout<<y<<" "<<y<<" ";
        }
        if(m % 2 == 1)cout<<y;
        cout<<endl;
        if(s == 0)
        {
            s++;
            y = x;
        }
        else
        {
            s = 0;
            if(y == k)y = x;
            else x = y;
        }
    }
    return ;
}

int main()
{
    ll t;
    cin>>t;
    while(t--)solve();
    return 0;
}
# Verdict Execution time Memory Grader output
1 Failed 122 ms 668 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 122 ms 668 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 122 ms 668 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 16 ms 596 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 7 ms 340 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 122 ms 668 KB Output contains flowers without two equal neighbours
2 Halted 0 ms 0 KB -