/** 2016 - 08 - 06 上午 Author: ITAK Motto: 今日的我要超越昨日的我,明日的我要胜过今日的我, 以创作出更好的代码为目标,不断地超越自己。 **/ #include #include #include #include #include #include #include #include #include using namespace std; typedef long long LL; typedef unsigned long long ULL; const int INF = 1e9+5; const int MAXN = 1e6+5; const LL MOD = 1e9+7; const double eps = 1e-7; const double PI = acos(-1); using namespace std; int main() { int T, n, m; cin>>T; while(T--) { scanf("%d%d",&n,&m); LL sum = 0, x; for(int i=1; i<=n; i++) { scanf("%I64d",&x); sum += x; } for(int i=1; i<=m; i++) { scanf("%I64d",&x); if(x > sum) printf("1"); else printf("0"); } puts(""); } return 0; }