Advertisement
dzocesrce

[APS] List of Lists Product

Aug 27th, 2023
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 6.09 KB | None | 0 0
  1. //laboratoriska, se bara proizvod na sumi na podlisti od lista!
  2. import java.util.Scanner;
  3. class DLLNode<E> {
  4.     protected E element;
  5.     protected DLLNode<E> pred, succ;
  6.  
  7.     public DLLNode(E elem, DLLNode<E> pred, DLLNode<E> succ) {
  8.         this.element = elem;
  9.         this.pred = pred;
  10.         this.succ = succ;
  11.     }
  12.  
  13.     @Override
  14.     public String toString() {
  15.         return element.toString();
  16.     }
  17. }
  18.  
  19. class DLL<E> {
  20.     private DLLNode<E> first, last;
  21.  
  22.     public DLL() {
  23.         // Construct an empty SLL
  24.         this.first = null;
  25.         this.last = null;
  26.     }
  27.  
  28.     public void deleteList() {
  29.         first = null;
  30.         last = null;
  31.     }
  32.  
  33.     public int length() {
  34.         int ret;
  35.         if (first != null) {
  36.             DLLNode<E> tmp = first;
  37.             ret = 1;
  38.             while (tmp.succ != null) {
  39.                 tmp = tmp.succ;
  40.                 ret++;
  41.             }
  42.             return ret;
  43.         } else
  44.             return 0;
  45.  
  46.     }
  47.  
  48.     public DLLNode<E> find(E o) {
  49.         if (first != null) {
  50.             DLLNode<E> tmp = first;
  51.             while (tmp.element != o && tmp.succ != null)
  52.                 tmp = tmp.succ;
  53.             if (tmp.element == o) {
  54.                 return tmp;
  55.             } else {
  56.                 System.out.println("Elementot ne postoi vo listata");
  57.             }
  58.         } else {
  59.             System.out.println("Listata e prazna");
  60.         }
  61.         return first;
  62.     }
  63.  
  64.     public void insertFirst(E o) {
  65.         DLLNode<E> ins = new DLLNode<E>(o, null, first);
  66.         if (first == null)
  67.             last = ins;
  68.         else
  69.             first.pred = ins;
  70.         first = ins;
  71.     }
  72.  
  73.     public void insertLast(E o) {
  74.         if (first == null)
  75.             insertFirst(o);
  76.         else {
  77.             DLLNode<E> ins = new DLLNode<E>(o, last, null);
  78.             last.succ = ins;
  79.             last = ins;
  80.         }
  81.     }
  82.  
  83.     public void insertAfter(E o, DLLNode<E> after) {
  84.         if(after==last){
  85.             insertLast(o);
  86.             return;
  87.         }
  88.         DLLNode<E> ins = new DLLNode<E>(o, after, after.succ);
  89.         after.succ.pred = ins;
  90.         after.succ = ins;
  91.     }
  92.  
  93.     public void insertBefore(E o, DLLNode<E> before) {
  94.         if(before == first){
  95.             insertFirst(o);
  96.             return;
  97.         }
  98.         DLLNode<E> ins = new DLLNode<E>(o, before.pred, before);
  99.         before.pred.succ = ins;
  100.         before.pred = ins;
  101.     }
  102.  
  103.     public E deleteFirst() {
  104.         if (first != null) {
  105.             DLLNode<E> tmp = first;
  106.             first = first.succ;
  107.             if (first != null) first.pred = null;
  108.             if (first == null)
  109.                 last = null;
  110.             return tmp.element;
  111.         } else
  112.             return null;
  113.     }
  114.  
  115.     public E deleteLast() {
  116.         if (first != null) {
  117.             if (first.succ == null)
  118.                 return deleteFirst();
  119.             else {
  120.                 DLLNode<E> tmp = last;
  121.                 last = last.pred;
  122.                 last.succ = null;
  123.                 return tmp.element;
  124.             }
  125.         }
  126.         // else throw Exception
  127.         return null;
  128.     }
  129.  
  130.     public E delete(DLLNode<E> node) {
  131.         if(node==first){
  132.             deleteFirst();
  133.             return node.element;
  134.         }
  135.         if(node==last){
  136.             deleteLast();
  137.             return node.element;
  138.         }
  139.         node.pred.succ = node.succ;
  140.         node.succ.pred = node.pred;
  141.         return node.element;
  142.  
  143.     }
  144.  
  145.     @Override
  146.     public String toString() {
  147.         String ret = new String();
  148.         if (first != null) {
  149.             DLLNode<E> tmp = first;
  150.             ret += tmp + "<->";
  151.             while (tmp.succ != null) {
  152.                 tmp = tmp.succ;
  153.                 if(tmp.succ==null){
  154.                     ret+=tmp;
  155.                     break;
  156.                 }
  157.                 ret += tmp + "<->";
  158.             }
  159.         } else
  160.             ret = "Prazna lista!!!";
  161.         return ret;
  162.     }
  163.  
  164.     public String toStringR() {
  165.         String ret = new String();
  166.         if (last != null) {
  167.             DLLNode<E> tmp = last;
  168.             ret += tmp + "<->";
  169.             while (tmp.pred != null) {
  170.                 tmp = tmp.pred;
  171.                 ret += tmp + "<->";
  172.             }
  173.         } else
  174.             ret = "Prazna lista!!!";
  175.         return ret;
  176.     }
  177.  
  178.     public DLLNode<E> getFirst() {
  179.         return first;
  180.     }
  181.  
  182.     public DLLNode<E> getLast() {
  183.  
  184.         return last;
  185.     }
  186.  
  187.     public void izvadiDupliIPrebroj(){
  188.  
  189.     }
  190. }
  191. public class ListOfListsProduct {
  192.     public static long get_product(DLL<DLL<Integer>> list){
  193.         DLLNode<DLL<Integer>> temp= list.getFirst();
  194.         long sum=0, product=1;
  195.         while(temp!=null){
  196.             sum=0;
  197.             DLLNode<Integer> temp2= temp.element.getFirst();
  198.             while(temp2!=null){
  199.                 sum+=temp2.element;
  200.                 temp2=temp2.succ;
  201.             }
  202.             product*=sum;
  203.             temp=temp.succ;
  204.         }
  205.         return product;
  206.     }
  207.     public static void main(String[] args) {
  208.         Scanner input= new Scanner(System.in);
  209.         int n= Integer.parseInt(input.nextLine());
  210.         int m= Integer.parseInt(input.nextLine());
  211.         DLL<DLL<Integer>> list_of_lists= new DLL<>();
  212.         for(int i=0;i<n;i++){
  213.             DLL<Integer> list= new DLL<>();
  214.             String[] broevi= input.nextLine().split("\\s+");
  215.             for(int j=0;j<m;j++){
  216.                 list.insertLast(Integer.parseInt(broevi[j]));
  217.             }
  218.             list_of_lists.insertLast(list);
  219.         }
  220.         System.out.println(get_product(list_of_lists));
  221.     }
  222. }
  223. /*
  224. 3
  225. 8
  226. 20 22 11 20 22 24 8 13
  227. 5 6 10 16 3 13 5 2
  228. 17 0 18 13 8 18 6 18
  229.  
  230. 823200
  231.  
  232. 7
  233. 18
  234. 22 6 23 1 9 1 14 11 23 5 13 0 18 5 0 18 6 24
  235. 15 7 15 0 8 0 5 8 6 20 21 23 18 21 13 9 0 12
  236. 12 24 1 4 19 24 17 0 23 9 18 13 15 2 6 5 6 23
  237. 13 1 0 2 17 7 15 16 15 20 1 11 9 16 21 13 15 15
  238. 19 5 9 23 6 2 14 9 13 18 12 8 2 1 18 23 4 21
  239. 19 13 1 13 7 6 2 8 2 5 5 14 11 11 3 23 3 16
  240. 1 16 16 10 21 17 22 9 15 3 14 14 8 1 6 10 7 20
  241.  
  242. 12885948986421420
  243. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement