1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include<bits/stdc++.h>

using namespace std;

bool visited[2010][2010];
int tablica[2010][2010];
bool plansza[2010][2010];

int n,m;

deque <pair<int, int>> kolejka;

void bfs()
{
    int x; //n
    int y; //m
    int wart;
    
    while(!kolejka.empty())
    {
        y = kolejka.front().second%m;
        
        x = kolejka.front().second/m;
        
        wart = kolejka.front().first;
        
        kolejka.pop_front();
        
        if(visited[x][y]==false)
        {
            visited[x][y] = true;
            tablica[x][y] = wart;
            
            if((x>0 && plansza[x-1][y]==true)&&(visited[x-1][y]==false))
            {
                kolejka.push_back(make_pair(wart+1, x*m+y-m));
            }
            if((y>0 && plansza[x][y-1]==true)&&(visited[x][y-1]==false))
            {
                kolejka.push_back(make_pair(wart+1, x*m+y-1));
            }
            
            if((x<n-1 && plansza[x+1][y]==true)&&(visited[x+1][y]==false))
            {
                kolejka.push_front(make_pair(wart, x*m+y+m));
            }
            if((y<m-1 && plansza[x][y+1]==true)&&(visited[x][y+1]==false))
            {
                kolejka.push_front(make_pair(wart, x*m+y+1));
            }
        }
        
    }
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    
    int k;
    cin>>n>>m>>k;
    
    string komend;
    
    for(int i=0;i<n;i++)
    {
        cin>>komend;
        
        for(int j=0;j<m;j++)
        {
            if(komend[j]=='.')
            {
                plansza[i][j] = true;
            }
            else
            {
                plansza[i][j] = false;
            }
        }
    }
    
    kolejka.push_back(make_pair(0,0));
    bfs();
    
    int licza = tablica[n-1][m-1] + n+m-2;
    int liczb = tablica[n-1][m-1];
    
    int a,b;
    
    int ile = 0;
    unsigned long long najmn = -1;
    unsigned long long tymczas;
    
    for(int i=0;i<k;i++)
    {
        cin>>a>>b;
        
        tymczas = a*licza + b*liczb;
        
        if(najmn==-1)
        {
            najmn=tymczas;
            ile = 1;
            continue;
        }
        
        if(tymczas==najmn)
        {
            ile++;
        }
        else if(tymczas<najmn)
        {
            ile = 1;
            najmn = tymczas;
        }
    }
    
    cout<<najmn<<" "<<ile<<endl;
    
    return 0;
}