Submission #157753

#TimeUsernameProblemLanguageResultExecution timeMemory
157753InfiniteJestBitaro the Brave (JOI19_ho_t1)C++14
20 / 100
34 ms5596 KiB
#include <iostream> #include <fstream> #include <vector> #include <queue> #include <algorithm> #include <math.h> #define pb push_back #define mp make_pair #define fi first #define se second using namespace std; ifstream in("input.txt"); ofstream out("output.txt"); typedef long long ll; int h,w; char tab[5000][5000]; int prefb[5000][5000]; int fb[5000]; int f[5000]; vector<pair<int,int> > v; int main(){ cin>>h>>w; int sumf; ll tot=0; for(int i=0;i<h;i++){ int sum=0; for(int y=0;y<w;y++){ cin>>tab[i][y]; if(i!=0&&tab[i-1][y]=='J')fb[y]+=sumf-prefb[i-1][y]; if(tab[i][y]=='O')sum++; else if(tab[i][y]=='I'){ f[y]++; } else{ tot+=f[y]*fb[y]; f[y]=0; } if(tab[i][y]!='J'&&i==h-1){ tot+=f[y]*fb[y]; } prefb[i][y]=sum; } sumf=sum; } printf("%d",tot); }

Compilation message (stderr)

joi2019_ho_t1.cpp: In function 'int main()':
joi2019_ho_t1.cpp:50:18: warning: format '%d' expects argument of type 'int', but argument 2 has type 'll {aka long long int}' [-Wformat=]
   printf("%d",tot);
                  ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...