#include #define rep(i, n) for(int i = 0; i < (int)(n); i++) using namespace std; typedef long long ll; typedef pair P; int INF = (1LL << 30) - 1; int MOD = 1e9+7; //微分 P dif(P p){ int a = p.first,b = p.second; if(!b)return P(0,0); return P(a * b,b - 1); } //Vにpを加える void push(vector &V,P p){ V[p.second] += p.first; } void dump(vector &V){ for(auto i:V)cout << i << " ";// cout << endl; } void func(vector &V,P &p,int depth){ if(!p.first){ if(p.second)p.first = 1; else p.first = 0; } rep(i,depth)dif(p); push(V,p); p.first = 0;p.second = 0; } main(){ int N,D; cin >> N >> D; D++; vectorV(D); P p(0,0); int cof = 0,deg = 0,depth = 0;//係数 次数 深さ string str,S; cin >> str; for(auto c:str)if(c != 'd')S += c; //cout << S << endl; for(auto c:S){ if(c == '{'){ depth++; }else if(c == '}'){ depth--; func(V, p, depth); }else if(c == '+'){ func(V, p, depth); }else if(c == '*'){ }else if(c == 'x'){ p.second++; }else{ //数字 p.first = (c - '0'); } } func(V, p, depth); dump(V); }