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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <iostream>
#include <vector>
#include <cstdio>
#include <algorithm>
#define ft first
#define sd second
#define mp make_pair
using namespace std;
char s[2002];
const int STALA_DRZEWO=4194304;
//const int STALA_DRZEWO=16;
pair<int, pair <int,int> > d[4000020];
pair<int,int> drzewo[8400000];
const int INF=1000000000;
bool plansza[2002][2002];
vector<pair<int,pair<int,int> > >graf[4000006];

void napraw (int x)
{
	for (int i=x+STALA_DRZEWO; i>1; i/=2)
	{
		if (drzewo[(i/2)*2].ft>=drzewo[(i/2)*2+1].ft)
		{
			drzewo[i/2].ft=drzewo[(i/2)*2].ft;
			drzewo[i/2].sd=drzewo[(i/2)*2].sd;
		}
		else
		{
			drzewo[i/2].ft=drzewo[(i/2)*2+1].ft;
			drzewo[i/2].sd=drzewo[(i/2)*2+1].sd;
		}
	}
		
}

int main() {
	
	int n,m,k;
	scanf("%d%d%d", &n, &m, &k);
	for (int i=1; i<=n; i++)
	{
		scanf("%s", s);
		for (int j=0; j<m; j++)
			if (s[j]=='.')
				plansza[i][j+1]=1;
	}
	
	int A=2;
	int B=1;
	for (int i=1; i<=n; i++)
	{
		for (int j=1; j<=m; j++)
		{
			if (plansza[i][j]==1)
			{
				int nr=(i-1)*m+j;
				if (plansza[i+1][j]==1)
				{
					graf[nr].push_back(mp(nr+m,mp(A,B)));
					graf[nr+m].push_back(mp(nr,mp(B,A)));
				}
				if (plansza[i][j+1]==1)
				{
					graf[nr].push_back(mp(nr+1,mp(A,B)));
					graf[nr+1].push_back(mp(nr,mp(B,A)));
				}
					
			}
			
		}
	}
	
   d[1]=mp(0,mp(0,0));
   int b,c,a,q;
   for(int i=2; i<=m*n; i++) d[i]=mp(INF,mp(INF,INF));
   
   for (int i=1; i<2*STALA_DRZEWO; i++)
		drzewo[i]=mp(-INF,-INF);

   drzewo[STALA_DRZEWO+1]=mp(0,1);
   napraw(1);
	
   while(drzewo[1].ft!=-INF)
   {
  
   	
      c=-drzewo[1].ft;
      a=drzewo[1].sd;

      drzewo[STALA_DRZEWO+a]=mp(-INF,-INF);
     
      napraw(a);
      if(d[a].ft<c) continue;
      
      q = graf[a].size();
      for(int j=0; j<q; j++)
      {
         b = graf[a][j].ft;        
         if(d[a].ft+graf[a][j].sd.ft<d[b].ft)
         {
         	if (graf[a][j].sd.ft==A)
            	d[b]=mp(d[a].first+graf[a][j].sd.ft,mp(d[a].sd.ft+1,d[a].sd.sd));
            else
            	d[b]=mp(d[a].ft+graf[a][j].sd.ft,mp(d[a].sd.ft,d[a].sd.sd+1));
           
             drzewo[b+STALA_DRZEWO]=mp(-d[b].ft,b);
             napraw(b);
         }
      }               
   }          
  long long kandA,kandB;
   long long odpA=(long long)(d[n*m].sd.ft);
   long long odpB=(long long)(d[n*m].sd.sd);
   

   
   long long wynik=100000000000000000LL;
   int ilu=0;
   for (int i=0; i<k; i++)
   {
   		scanf("%lld%lld", &kandA, &kandB);
   		
   	      long long G=kandA*odpA+kandB*odpB;
   			if (G<wynik)
   			{
   				wynik=G;
   				ilu=1;
   				continue;
   			}
   			if (G==wynik)
   				ilu++;
   		
   }
   
  // cout<<wynik<<" "<<ilu<<"\n";
	printf("%lld %d", wynik, ilu);
	return 0;
}