------
## 最终结论
```python
from collections import Counter

def count_common(words):
    word_count = Counter(words)
    sorted_words = sorted(word_count.items(), key=lambda x: (-x[1], x[0]))
    return sorted_words
```