#include using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} void solve(){ int K,M,N; cin>>K>>M>>N; M--; if(M==0||2*N>K){ cout<<"No\n"; }else{ vectorto(K); for(int y=0;yV; vectorused(K); for(int i=0;i>T; while(T--){ solve(); } }