/* Catalin-Stefan Tiseanu Pre-written code is assembled from various sources found online. Big thanks to the community for that ! */ // Pre-written code below using namespace std; #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //START_CLEAN // always remove //START:mandatory //#define DEBUG #ifndef NDEBUG # define assert_msg(condition, message) \ do { \ if (! (condition)) { \ std::cerr << "Assertion `" #condition "` failed in " << __FILE__ \ << " line " << __LINE__ << ": " << message << std::endl; \ std::exit(EXIT_FAILURE); \ } \ } while (false) #else # define ASSERT(condition, message) do { } while (false) #endif #ifdef DEBUG #define debug(args...) {dbg,args; cerr< std::ostream& operator <<(std::ostream& stream, const vector & v) { for (auto el : v) stream << el << " "; return stream; } template std::ostream& operator <<(std::ostream& stream, const vector> & v) { for (auto line : v) { for (auto el : line) stream << el << " "; stream << endl; } return stream; } template std::ostream& operator <<(std::ostream& stream, const pair & p) { stream << "( " << p.first << ", " << p.second << " )"; return stream; } class debugger { public: template void output (const T& v) { cerr << v << " "; } template debugger& operator , (const T& v) { output(v); return *this; } } dbg; //END:mandatory //////////////// // templates // //////////////// // general //template size template int size(const T& c) { return int(c.size()); } //template abs template T abs(T x) { return x < 0 ? -x : x; } //template sqr template T sqr(T x) { return x*x; } //template remin template bool remin(T& x, T y) { if (x <= y) return false; x = y; return true; } //template remax template bool remax(T& x, T y) { if (x >= y) return false; x = y; return true; } //template factorize template inline vector > factorize(T n) {vector > R;for (T i=2;n>1;){if (n%i==0){int C=0;for (;n%i==0;C++,n/=i);R.push_back(make_pair(i,C));} i++;if (i>n/i) i=n;}if (n>1) R.push_back(make_pair(n,1));return R;} //template toStr template string toStr(T x) { stringstream ss; ss << x; return ss.str(); } // other string maskToStr(long long x, int len) {stringstream ss; for (int i = 0; i < len; ++i) if (x >> i & 1) ss << "1"; else ss << "0"; return ss.str();} // misc #define EPS 1e-5 // types //template int64 typedef long long int64 ; //template uint64 typedef unsigned long long uint64 ; // shortcuts #define all(_xx) _xx.begin(), _xx.end() #define pb push_back #define vi vector #define vs vector #define vvi vector> #define vd vector #define vpii vector > #define vpdd vector > #define pii pair #define pll pair #define pdd pair #define mp(XX, YY) make_pair(XX, YY) #define fi first #define se second #define ll long long #define SS stringstream // for loops #define re(II, NN) for (int II(0), _NN(NN); (II) < (NN); ++(II)) #define fod(II, XX, YY) for (int II(XX), _YY(YY); (II) >= (_YY); --(II)) #define fo(II, XX, YY) for (int II(XX), _YY(YY); (II) <= (_YY); ++(II)) #define foreach(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();++it) // Useful hardware instructions #define bitcount __builtin_popcount #define gcd __gcd // Useful all around #define checkbit(n,b) ( (n >> b) & 1) #define DREP(a) sort(a.begin(), a.end());a.erase(unique(a.begin(), a.end()),a.end()) #define INDEX(arr,ind) (lower_bound(arr.begin(), arr.end(),ind)-arr.begin()) #define PAUSE cerr << "Press any key to continue ..."; char xxxx; scanf("%c", &xxxx); #define fill(xx,val) memset(xx, val, sizeof(xx)) struct Scanner { char* curPos; const static int BUF_SIZE = (2000000); char input[BUF_SIZE]; FILE * fin; void init(FILE * _fin) { fin = _fin; fread(input, 1, sizeof(input), fin); curPos = input; } Scanner() {;} inline void ensureCapacity() { int size = input + BUF_SIZE - curPos; if (size < 100) { memcpy(input, curPos, size); fread(input + size, 1, BUF_SIZE - size, fin); curPos = input; } } inline int nextInt() { ensureCapacity(); while (!isdigit(*curPos) && *curPos != '-') ++curPos; int res = 0; int sign = 1; if (*curPos == '-') sign = -1, ++curPos; while (*curPos >= '0' && *curPos <= '9') res = res * 10 + (*(curPos++) & 15); return sign * res; } } Sc; #define MAX_AT (1<<20) int AT, N, M; unordered_map um; vi A, B, u, l, r; vi adj[MAX_AT]; // a romanian classic ... int pairup(int x) { if (u[x]) return 0; u[x] = 1; for (auto y : adj[x]) { if (!r[y] || pairup(r[y])) { l[x] = y; r[y] = x; return 1; } } return 0; } int main() { Sc.init(stdin); N = Sc.nextInt(), M = Sc.nextInt(); A.resize(N), B.resize(M); re (i, N) A[i] = Sc.nextInt(); re (i, M) B[i] = Sc.nextInt(); AT = 0; um.clear(); B.pb(0); re (i, MAX_AT) adj[i].clear(); re (i, N) { unordered_map was; re (j, M + 1) { debug(A[i], " - ", B[j]); if (!was.count(A[i] - B[j])) { was[A[i] - B[j]] = 1; if (!um.count(A[i] - B[j])) um[A[i] - B[j]] = ++AT; adj[i + 1].pb(um[A[i] - B[j]]); debug(i + 1, um[A[i] - B[j]]); } } } l.assign(N + 1, 0); r.assign(AT + 1, 0); u.assign(N + 1, 0); fo (i, 1, N) { if (!pairup(i)) { u.assign(N + 1, 0); pairup(i); } } int res = 0; fo (i, 1, N) if (l[i] && r[l[i]] == i) ++res; printf("%d\n", res); fo (i, 1, N) { if (i > 1) printf(" "); if (l[i] && r[l[i]] == i) printf("%d", l[i]); else printf("%d", A[i - 1]); } printf("\n"); return 0; }