#include <vector>

using namespace std;

vector<int> count(int N, vector<int> S, vector<int> P) {
    vector<int> C(N);
    return C;
}
