跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F0936. Dasha and Photos

    ID: 942 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>枚举数据结构动态规划模拟算法思想编程与模拟挑战难度共享题库Codeforces英文题面题目来源题面语言

Dasha and Photos

题目描述

F. Dasha and Photos
time limit per test
4 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Dasha decided to have a rest after solving the problem D and began to look photos from previous competitions.

Let's call photos as the matrix with the size n×m, which consists of lowercase English letters.

Some k photos especially interested her, because they can be received from photo-template by painting a rectangular area in a certain color. Let's call such photos special.

More formally the i-th special photo is received from the photo-template by replacing all characters on some rectangle with upper left corner of the cell with coordinates (ai,bi) and lower right corner in the cell with coordinates (ci,di) to the symbol ei.

Dasha asks you to find the special photo so that the total distance from it to all other special photos is minimum. And calculate this distance.

Determine the distance between two photos as the sum of distances between all corresponding letters. The distance between two letters is the difference module of their positions in the alphabet. For example, the distance between letters 'h' and 'm' equals |8-13|=5, because the letter 'h' is the 8-th in the alphabet, the letter 'm' is the 13-th.

Input

The first line contains three integers n, m, k (1≤n,m≤103,1≤k≤3·105) − the number of strings in the photo-template, the number of columns and the number of special photos which are interesting for Dasha.

The next n lines contains the string with m length which consists of little Latin characters − the description of the photo-template.

Each of the next k lines contains the description of the special photo in the following format, "ai bi ci di ei" (1≤aicin,1≤bidim), where (ai,bi) − is the coordinate of the upper left corner of the rectangle, (ci,di) − is the description of the lower right corner, and ei − is the little Latin letter which replaces the photo-template in the described rectangle.

Output

In the only line print the minimum total distance from the found special photo to all other special photos.

Examples
Input
3 3 2
aaa
aaa
aaa
1 1 2 2 b
2 2 3 3 c
Output
10
Input
5 5 3
abcde
eabcd
deabc
cdeab
bcdea
1 1 3 4 f
1 2 3 3 e
1 3 3 4 i
Output
59
Note

In the first example the photos are following:


bba aaa
bba acc
aaa acc

The distance between them is 10.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 372 题。保留原作者与原赛事署名。