Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- typedef unsigned long long int ull;
- typedef long long int ll;
- typedef vector<int> vi;
- typedef vector<ll> vll;
- typedef vector<vi> vvi;
- typedef pair<ll,ll> pll;
- typedef vector< pll > vpll;
- typedef set<int> sti;
- #define sc scanf
- #define pf printf
- #define sci(n) scanf("%d",&n)
- #define scl(n) scanf("%lld",&n)
- #define scd(n) scanf("%lf",&n)
- #define scs(s) scanf("%s",s)
- #define pfi(n) printf("%d",n)
- #define pfl(n) printf("%lld",n)
- #define pff(n) cout<<n
- #define line printf("\n")
- #define spc printf(" ")
- #define loop(i,x,y) for(int i=int(x); i<=int(y); i++)
- #define rloop(i,y,x) for(int i=int(y); i>=int(x); i--)
- #define cspf(i) printf("Case %d: ", i)
- #define pb push_back
- #define mp make_pair
- #define ff first
- #define ss second
- #define all(v) v.begin(),v.end()
- #define rall(v) v.rbegin(),v.rend()
- #define read() freopen("input.txt", "r", stdin)
- #define write() freopen("output.txt", "w", stdout)
- /// Constants
- #define eps 1e-9
- #define PI acos(-1.0) // 3.1415926535897932
- #define MAX 1000009
- int main()
- {
- ll n,k;
- scl(n),scl(k);
- ll x=(k*k)-k;
- if(x<n){
- pf("NO\n");
- return 0;
- }
- ll cnt=0;
- pf("YES\n");
- for(int i=1;i<=k;i++){
- for(int j=i+1;j<=k;j++){
- if(cnt==n)
- return 0;
- cnt++;
- pfi(i);spc;pfi(j);line;
- if(cnt==n)
- return 0;
- cnt++;
- pfi(j);spc;pfi(i);line;
- }
- }
- return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement