CF1674F.Desktop Rearrangement

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Your friend Ivan asked you to help him rearrange his desktop. The desktop can be represented as a rectangle matrix of size n×mn \times m consisting of characters '.' (empty cell of the desktop) and '*' (an icon).

The desktop is called good if all its icons are occupying some prefix of full columns and, possibly, the prefix of the next column (and there are no icons outside this figure). In other words, some amount of first columns will be filled with icons and, possibly, some amount of first cells of the next (after the last full column) column will be also filled with icons (and all the icons on the desktop belong to this figure). This is pretty much the same as the real life icons arrangement.

In one move, you can take one icon and move it to any empty cell in the desktop.

Ivan loves to add some icons to his desktop and remove them from it, so he is asking you to answer qq queries: what is the minimum number of moves required to make the desktop good after adding/removing one icon?

Note that queries are permanent and change the state of the desktop.

输入格式

The first line of the input contains three integers nn , mm and qq ( 1n,m1000;1q21051 \le n, m \le 1000; 1 \le q \le 2 \cdot 10^5 ) — the number of rows in the desktop, the number of columns in the desktop and the number of queries, respectively.

The next nn lines contain the description of the desktop. The ii -th of them contains mm characters '.' and '*' — the description of the ii -th row of the desktop.

The next qq lines describe queries. The ii -th of them contains two integers xix_i and yiy_i ( 1xin;1yim1 \le x_i \le n; 1 \le y_i \le m ) — the position of the cell which changes its state (if this cell contained the icon before, then this icon is removed, otherwise an icon appears in this cell).

输出格式

Print qq integers. The ii -th of them should be the minimum number of moves required to make the desktop good after applying the first ii queries.

输入输出样例

  • 输入#1

    4 4 8
    ..**
    .*..
    *...
    ...*
    1 3
    2 3
    3 1
    2 3
    3 4
    4 3
    2 3
    2 2

    输出#1

    3
    4
    4
    3
    4
    5
    5
    5
  • 输入#2

    2 5 5
    *...*
    *****
    1 3
    2 2
    1 3
    1 5
    2 3

    输出#2

    2
    3
    3
    3
    2
首页