B - Nutrients Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 150150

問題文

健康に気を使っている高橋君は、MM 種類の栄養素について、食事によって十分な量を摂取できているか気になりました。

ii 番目の栄養素は 11 日あたり AiA_i 以上摂取することが目標です。

高橋君は今日 NN 品の食品を食べ、ii 品目の食品からは栄養素 jjXi,jX_{i,j} 摂取しました。

MM 種類全ての栄養素で目標を達成しているかどうかを判定してください。

制約

  • 1N1001 \leq N \leq 100
  • 1M1001 \leq M \leq 100
  • 0Ai,Xi,j1070 \leq A_i,X_{i,j} \leq 10^7
  • 入力は全て整数である

入力

入力は以下の形式で標準入力から与えられる。

NN MM
A1A_1 \ldots AMA_M
X1,1X_{1,1} \ldots X1,MX_{1,M}
\vdots
XN,1X_{N,1} \ldots XN,MX_{N,M}

出力

MM 種類全ての栄養素で目標を達成しているなら Yes、そうでないならば No を出力せよ。


入力例 1Copy

Copy
2 3
10 20 30
20 0 10
0 100 100

出力例 1Copy

Copy
Yes

栄養素 1111 品目から 202022 品目から 00 摂取したため、合わせて 2020 摂取しており、1010 以上摂取するという目標を達成しています。
栄養素 2,32,3 についても同様に目標を達成しています。


入力例 2Copy

Copy
2 4
10 20 30 40
20 0 10 30
0 100 100 0

出力例 2Copy

Copy
No

栄養素 44 について目標を達成していません。

Score : 150150 points

Problem Statement

Takahashi is health-conscious and concerned about whether he is getting enough of MM types of nutrients from his diet.

For the ii-th nutrient, his goal is to take at least AiA_i units per day.

Today, he ate NN foods, and from the ii-th food, he took Xi,jX_{i,j} units of nutrient jj.

Determine whether he has met the goal for all MM types of nutrients.

Constraints

  • 1N1001 \leq N \leq 100
  • 1M1001 \leq M \leq 100
  • 0Ai,Xi,j1070 \leq A_i, X_{i,j} \leq 10^7
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN MM
A1A_1 \ldots AMA_M
X1,1X_{1,1} \ldots X1,MX_{1,M}
\vdots
XN,1X_{N,1} \ldots XN,MX_{N,M}

Output

Print Yes if the goal is met for all MM types of nutrients, and No otherwise.


Sample Input 1Copy

Copy
2 3
10 20 30
20 0 10
0 100 100

Sample Output 1Copy

Copy
Yes

For nutrient 11, Takahashi took 2020 units from the 11-st food and 00 units from the 22-nd food, totaling 2020 units, thus meeting the goal of taking at least 1010 units.
Similarly, he meets the goal for nutrients 22 and 33.


Sample Input 2Copy

Copy
2 4
10 20 30 40
20 0 10 30
0 100 100 0

Sample Output 2Copy

Copy
No

The goal is not met for nutrient 44.



2025-04-03 (Thu)
10:18:50 +00:00