提交时间:2023-08-25 15:08:17

运行 ID: 100361

#include<bits/stdc++.h> using namespace std; void down(int x); void up(int x); string dp[350]; int p=0; void down(int x){ if (x>2) down(x-2); p++; dp[p]=dp[p - 1]; dp[p][x - 1]='0'; if(x>2) up(x-2); if (x>1) down(x-1); } void up(int x){ if (x>1) up(x-1); if (x>2) down(x-2); p++; dp[p]=dp[p-1]; dp[p][x-1]='1'; if (x>2) up(x-2); } int main(){ dp[0]="111111111"; int n; down(9);a while(cin>>n){ if (n>341) cout<<-1<<endl; else cout<<dp[n]<<'\n'; } return 0; }