每次根据上一位,计算下一位为TA-1/TA/TA+1,放入queue
中,最后输出第次弹出的整数。
long long
会WA
!#include <cstdio>
#include <queue>
using namespace std;
typedef long long LL;
int main(int argc, char** argv)
{
int k;
scanf("%d", &k);
queue<LL> q;
for(int i=1; i<10; i++) q.push(i);
while(true)
{
LL x = q.front(); q.pop();
if(--k == 0)
{
printf("%lld\n", x);
return 0;
}
int r = x % 10LL;
x *= 10LL;
x += r;
if(r > 0) q.push(x - 1);
q.push(x);
if(r < 9) q.push(x + 1);
}
return 0;
}