Submission #1193578

#TimeUsernameProblemLanguageResultExecution timeMemory
1193578cpdreamerSwapping Cities (APIO20_swap)C++20
0 / 100
48 ms4524 KiB
#include "swap.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const long double EPS = 1e-9;
const ll MOD=998244353;
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,greater<int>,rb_tree_tag,
        tree_order_statistics_node_update> indexed_set;
void file(){
    freopen("input.txt.txt","r",stdin);
    freopen("output.txt.txt","w",stdout);
}
#define pb push_back
#define P pair
#define S second
#define F first
#define all(v) v.begin(),v.end()

void init(int N, int M,
          std::vector<int> U, std::vector<int> V, std::vector<int> W) {
}

int getMinimumFuelCapacity(int X, int Y) {
    return -1;
}

Compilation message (stderr)

swap.cpp: In function 'void file()':
swap.cpp:12:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 |     freopen("input.txt.txt","r",stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
swap.cpp:13:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |     freopen("output.txt.txt","w",stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...