### Part 1:
We need to find the smallest integer k such that if the minimum number in A,B∈S are both ≥k, then A→B implies B→A.
We claim that the smallest integer k is 8.
Proof:
1. **k≤7 does not satisfy the condition:**
Consider the counterexample A=(1956,7,7,7,7,7,7,7,7,7) and B=(1938,9,9,9,9,9,9,9,9,9). It is clear that A→B. However, B→A because each of the entries from the 2nd to the 10th in B must be subtracted by 9 at least once. After the last subtraction, the remaining entries should be greater than or equal to 8, which contradicts the condition.
2. **k=8 does satisfy the condition:**
Denote the numbers in the i-th entry as xi. For any i and j, xi−xjmod10 is conserved. Assume 8≤a1≤a2≤⋯≤a10 for A. We need to show that for each i, we can operate on B so that x1−a1=x2−a2=⋯=xi−ai.
We prove this by induction on i. The base case is trivial. Suppose x1−a1=x2−a2=⋯=xi−ai. Since xi−xjmod10 is conserved and A→B, xi−aimod10 should be equal for all i. Repeat operations on x1,x2,⋯,xi+1 equal times so that x1 or xi+1≤8. If xi+1−ai+1<xi−ai, let t=10(xi−ai)−(xi+1−ai+1). After some calculations, we can subtract 9 from all xj(j=i+1) t times, including necessary operations subtracting 9 from xj(j≥i+2), while not subtracting 9 from xi+1. If xi+1−ai+1>xi−ai, proceed similarly.
Thus, the smallest k is 8.
### Part 2:
For the k obtained in Part 1, we need to find how many tuples can be picked from S such that any two distinct tuples A,B satisfy A→B.
We have practically shown that A→B is equivalent to a1−b1≡a2−b2≡⋯≡a10−b10(mod10). We need to count the number of tuples that cannot be derived from each other, ensuring x1+x2+⋯+x10=2019≡9(mod10).
The number of such tuples is 108.
The answer is: \boxed{10^8}.