Submission #283332

# Submission time Handle Problem Language Result Execution time Memory
283332 2020-08-25T14:38:39 Z davi_bart Toy Train (IOI17_train) C++14
5 / 100
454 ms 1656 KB
#include <bits/stdc++.h>
#include "train.h"
using namespace std;
#define ll long long
//#define int ll
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<int> charge,pers;
vector<int> p[6000];
vector<int> tempo(5010,0);
int temp=1;
int dfs(int pos,int last_charge){//return 0 if cycle without charger
  if(tempo[pos]>0){
    if(tempo[pos]>last_charge)return 0;
    return 1;
  }
  tempo[pos]=temp;
  if(charge[pos])last_charge=temp;
  temp++;
  if(pers[pos]==0){
    int sol=1;
    for(int x:p[pos]){
      temp=tempo[pos]+1;
      sol=min(sol,dfs(x,last_charge));
      if(sol==0)break;
    }
    //tempo[pos]=0;
    return sol;
  }else{
    int sol=0;
    for(int x:p[pos]){
      temp=tempo[pos]+1;
      sol=max(sol,dfs(x,last_charge));
      if(sol)break;
    }
    //tempo[pos]=0;
    return sol;
  }
}
std::vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v){
  pers=a;charge=r;
	vector<int> ans(a.size(),0);
	for(int i=0;i<u.size();i++)p[u[i]].push_back(v[i]);
	for(int i=0;i<a.size();i++){
    if(pers[i]){
      sort(p[i].begin(),p[i].end(),[&](int aa,int bb){
        if(charge[aa]==charge[bb])return aa<bb;
        return (bool)charge[aa];
      });
    }else{
      sort(p[i].begin(),p[i].end(),[&](int aa,int bb){
        if(charge[aa]==charge[bb])return aa<bb;
        return (bool)charge[bb];
      });
    }
	}
	for(int i=0;i<a.size();i++){
    temp=1;
    fill(tempo.begin(),tempo.end(),0);
    ans[i]=dfs(i,-2);
	}
	return ans;
}

Compilation message

train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:42:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |  for(int i=0;i<u.size();i++)p[u[i]].push_back(v[i]);
      |              ~^~~~~~~~~
train.cpp:43:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |  for(int i=0;i<a.size();i++){
      |              ~^~~~~~~~~
train.cpp:56:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   56 |  for(int i=0;i<a.size();i++){
      |              ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 18 ms 896 KB Output is correct
2 Correct 17 ms 896 KB Output is correct
3 Correct 17 ms 896 KB Output is correct
4 Correct 17 ms 896 KB Output is correct
5 Correct 17 ms 896 KB Output is correct
6 Correct 17 ms 896 KB Output is correct
7 Correct 17 ms 896 KB Output is correct
8 Correct 17 ms 896 KB Output is correct
9 Correct 17 ms 896 KB Output is correct
10 Correct 17 ms 896 KB Output is correct
11 Correct 16 ms 896 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 640 KB 3rd lines differ - on the 2nd token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 205 ms 1408 KB Output is correct
2 Correct 237 ms 1656 KB Output is correct
3 Correct 223 ms 1536 KB Output is correct
4 Correct 22 ms 1408 KB Output is correct
5 Incorrect 85 ms 1408 KB 3rd lines differ - on the 11th token, expected: '0', found: '1'
6 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 343 ms 1272 KB 3rd lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 454 ms 1272 KB 3rd lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 18 ms 896 KB Output is correct
2 Correct 17 ms 896 KB Output is correct
3 Correct 17 ms 896 KB Output is correct
4 Correct 17 ms 896 KB Output is correct
5 Correct 17 ms 896 KB Output is correct
6 Correct 17 ms 896 KB Output is correct
7 Correct 17 ms 896 KB Output is correct
8 Correct 17 ms 896 KB Output is correct
9 Correct 17 ms 896 KB Output is correct
10 Correct 17 ms 896 KB Output is correct
11 Correct 16 ms 896 KB Output is correct
12 Incorrect 1 ms 640 KB 3rd lines differ - on the 2nd token, expected: '1', found: '0'
13 Halted 0 ms 0 KB -