#include <iostream>
using namespace std;
int main()
{
int k;
cin >> k;
cout << "100" << endl;
int v = 1;
while(k)
{
if(k%2)
{
cout << ++v << " 100" << endl;
--k;
}
else
{
cout << v+1 << " " << v+2 << endl;
cout << v+2 << " -1" << endl;
v+=2;
k>>=1;
}
}
for(; v<=100; ++v)
{
cout << "-1 -1" << endl;
}
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #include <iostream> using namespace std; int main() { int k; cin >> k; cout << "100" << endl; int v = 1; while(k) { if(k%2) { cout << ++v << " 100" << endl; --k; } else { cout << v+1 << " " << v+2 << endl; cout << v+2 << " -1" << endl; v+=2; k>>=1; } } for(; v<=100; ++v) { cout << "-1 -1" << endl; } return 0; } |
English