Submission #1065287

# Submission time Handle Problem Language Result Execution time Memory
1065287 2024-08-19T05:57:48 Z vjudge1 Catfish Farm (IOI22_fish) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "fish.h"
using namespace std;

#define TL ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define rall(s) s.rbegin(),s.rend()
#define all(s) s.begin(),s.end()
#define pb push_back
#define se second
#define fi first
#define ll long long
#define ld long double
#define YES cout<<"YES\n"
#define Yes cout<<"Yes\n"
#define yes cout<<"yes\n"
#define NO cout<<"NO\n"
#define No cout<<"No\n"
#define no cout<<"no\n"


const int N = 5e5+ 9 , mod = 1e9 + 7;
ll dp[N][2] ,  d[N];


ll maxweights(int n , int m , vector<int>a , vector<int>b , vector<int>c){
    ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;

    for(i = 0; i < m; i++){
        d[a[i]] += c[i];
    }
    for(i = 0; i < m; i++){
        if(i == 0)
            dp[i][0] = d[i] , dp[i][1] = 0;
        else
            dp[i][0] = dp[i - 1][1] + d[i] , dp[i][1] = max(dp[i - 1][0] , dp[i - 1][1]);
    }
    return max(dp[n - 1][0] , dp[n - 1][1]);
}


// Author : حسن

Compilation message

fish.cpp: In function 'long long int maxweights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:26:8: warning: unused variable 'q' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |        ^
fish.cpp:26:16: warning: unused variable 'j' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                ^
fish.cpp:26:19: warning: unused variable 'l' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                   ^
fish.cpp:26:22: warning: unused variable 'r' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                      ^
fish.cpp:26:26: warning: unused variable 'x' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                          ^
fish.cpp:26:30: warning: unused variable 'y' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                              ^
fish.cpp:26:34: warning: unused variable 's' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                                  ^
fish.cpp:26:42: warning: unused variable 'f' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                                          ^
fish.cpp:26:46: warning: unused variable 'k' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                                              ^
fish.cpp:26:50: warning: unused variable 'mn' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                                                  ^~
fish.cpp:26:61: warning: unused variable 'mx' [-Wunused-variable]
   26 |     ll q , i , j ,l ,r , x , y , s = 0 , f , k , mn = 1e18, mx = 0 ;
      |                                                             ^~
/usr/bin/ld: /tmp/ccVK5Q6a.o: in function `main':
grader.cpp:(.text.startup+0x25e): undefined reference to `max_weights(int, int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status