-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.9-Retele neurale.java
50 lines (47 loc) · 1.28 KB
/
4.9-Retele neurale.java
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
import java.util.*;
public class Andrei{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
String []parts=str.trim().split("\\s+");
int m=Integer.parseInt(parts[0]);
int n=Integer.parseInt(parts[1]);
int p=Integer.parseInt(parts[2]);
int v[][]=new int[m][n];
int w[][]=new int[n][p];
int x[]=new int[m];
for (int i=0;i<m;i++){
for(int j=0;j<m;j++){
v[i][j]=sc.nextInt();
}
}
for(int k=0;k<n;k++){
for(int t=0;t<p;t++){
w[k][t]=sc.nextInt();
}
}
for (int z=0;z<m;z++){
x[z]=sc.nextInt();}
int s[]=new int[n];
int y[]=new int[p];
for(int o=0;o<n;o++){
for(int c=0;c<m;c++){
s[o]+=x[c]*v[c][o];
}
}
for(int q=0;q<p;q++){
for(int e=0;e<n;e++){
y[q]+=s[e]*w[e][q];
}
}
int max=0;
int index=0;
for(int r=0;r<y.length;r++){
if (y[r]>max){
max=y[r];
index=r;
}
}
System.out.println(index+1);
}
}