USACO 2.1

USACO 2.1.1

题解:

这题有点毒,调了一个中午……

先读入,用一个三维布尔数组储存第(i,j)个点的四个方向是否有墙。

对于第一个问题,直接BFS求连通块,并构造出一个图,第(i,j)个点的数字表示该房间属于第几个连通块。

对于第二个问题,边BFS边统计。

对于第三个问题,直接暴力枚举每面墙,找最大值。

对于第四个问题,同样是暴力枚举,但要考虑优先级问题。从右上角的房间枚举到左下角的房间(j=m downto 1;i=1 to n),每个房间先看东墙再看北墙。

代码:

{
ID:m1599491
PROG:castle
LANG:PASCAL
}
const fx:array[1..4] of longint=(0,-1,0,1);
const fy:array[1..4] of longint=(-1,0,1,0);
var k:array[1..50,1..50,1..4] of boolean;
var n,m,i,j,x,tot,l,maxx,ans1,ans2,ans3,p:longint;
var num:array[1..2500] of longint;
var f:array[1..1000,1..2] of longint;
var b,t:array[1..100,1..100] of longint;
function max(x,y:longint):longint; begin if x>y then exit(x);exit(y); end;
procedure bfs(x,y,tot:longint);
var i,j,front,rear,nx,ny:longint;
begin
  front:=0;rear:=1;
  f[rear,1]:=x;f[rear,2]:=y;
  b[x,y]:=tot;
  num[tot]:=1;
  maxx:=max(maxx,num[tot]);
  while front<rear do
  begin
    inc(front);
    for i:=1 to 4 do
    begin
      nx:=f[front,1];ny:=f[front,2];
      if (not k[nx,ny,1])and(i=1) then ny:=ny-1;
      if (not k[nx,ny,2])and(i=2) then nx:=nx-1;
      if (not k[nx,ny,3])and(i=3) then ny:=ny+1;
      if (not k[nx,ny,4])and(i=4) then nx:=nx+1;
      if (nx>0)and(ny>0)and(nx<=n)and(ny<=m)and(b[nx,ny]=0) then
      begin
        inc(rear);
        f[rear,1]:=nx;f[rear,2]:=ny;
        b[nx,ny]:=tot;
        inc(num[tot]);
        maxx:=max(maxx,num[tot]);
      end;
    end;
  end;
end;
procedure o;
var i,j,t,nx,ny:longint;
begin
  for j:=m downto 1 do
  for i:=1 to n do
  begin
    for t:=3 downto 2 do
    begin
      nx:=i+fx[t];ny:=j+fy[t];
      if b[nx,ny]=b[i,j] then continue;
      if (nx<1)or(ny<1)or(nx>n)or(ny>m) then continue;
      if num[b[i,j]]+num[b[nx,ny]]=p then
      begin
        ans1:=i;ans2:=j;ans3:=t;
      end;
    end;
  end;
end;
function find(x:longint):longint;
var i,j,t,nx,ny,merge:longint;
begin
  merge:=-maxlongint;
  for j:=1 to m do
  for i:=1 to n do
  begin
    for t:=4 downto 1 do
    begin
      nx:=i+fx[t];ny:=j+fy[t];
      if (nx<1)or(ny<1)or(nx>n)or(ny>m) then continue;
      if (k[i,j,t])and(b[i,j]<>b[nx,ny]) then
      if merge<=num[b[i,j]]+num[b[nx,ny]] then merge:=num[b[i,j]]+num[b[nx,ny]];
    end;
  end;
  exit(merge);
end;
begin
  assign(input,‘castle.in‘);reset(input);
  assign(output,‘castle.out‘);rewrite(output);
  readln(m,n);
  for i:=1 to n do
  begin
    for j:=1 to m do
    begin
      read(x);
      t[i,j]:=x;
      if x=1 then k[i,j,1]:=true;
      if x=2 then k[i,j,2]:=true;
      if x=4 then k[i,j,3]:=true;
      if x=8 then k[i,j,4]:=true;
      if x=3 then begin k[i,j,1]:=true;k[i,j,2]:=true; end;
      if x=5 then begin k[i,j,1]:=true;k[i,j,3]:=true; end;
      if x=9 then begin k[i,j,1]:=true;k[i,j,4]:=true; end;
      if x=6 then begin k[i,j,2]:=true;k[i,j,3]:=true; end;
      if x=10 then begin k[i,j,2]:=true;k[i,j,4]:=true; end;
      if x=12 then begin k[i,j,3]:=true;k[i,j,4]:=true; end;
      if x=7 then begin k[i,j,1]:=true;k[i,j,2]:=true;k[i,j,3]:=true; end;
      if x=11 then begin k[i,j,1]:=true;k[i,j,2]:=true;k[i,j,4]:=true; end;
      if x=14 then begin k[i,j,2]:=true;k[i,j,3]:=true;k[i,j,4]:=true; end;
      if x=13 then begin k[i,j,1]:=true;k[i,j,3]:=true;k[i,j,4]:=true; end;
      if x=15 then begin k[i,j,1]:=true;k[i,j,2]:=true;k[i,j,3]:=true;k[i,j,4]:=true; end;
    end;
    readln;
  end;
  maxx:=0;
  for i:=1 to n do for j:=1 to m do if b[i,j]=0 then
  begin
    inc(tot);
    bfs(i,j,tot);
  end;
  writeln(tot);
  writeln(maxx);
  p:=find(0);o;
  writeln(p);
  if ans3=3 then writeln(ans1,‘ ‘,ans2,‘ E‘);
  if ans3=2 then writeln(ans1,‘ ‘,ans2,‘ N‘);
  close(input);close(output);
end.

The Castle

USACO 2.1.2

题解:

暴枚每一种不大于1的分数情况,边判个GCD是不是等于1,接着快排一下出答案。

代码:

{
ID:m1599491
PROG:frac1
LANG:PASCAL
}
var z:array[1..100000] of double;
var x,y:array[1..100000] of longint;
var i,n,j,tot:longint;
function gcd(a,b:longint):longint;
begin
  if b=0 then exit(a);
  gcd:=gcd(b,a mod b);
end;
procedure qs(l,r:longint);
var i,j,p:longint;
var m,t:double;
begin
  i:=l;j:=r;m:=z[(l+r)>>1];
  repeat
    while z[i]<m do inc(i);while z[j]>m do dec(j);
    if i<=j then
    begin
      t:=z[i];z[i]:=z[j];z[j]:=t;
      p:=x[i];x[i]:=x[j];x[j]:=p;
      p:=y[i];y[i]:=y[j];y[j]:=p;
      inc(i);dec(j);
    end;
  until i>j;
  if i<r then qs(i,r);if l<j then qs(l,j);
end;
begin
  assign(input,‘frac1.in‘);reset(input);
  assign(output,‘frac1.out‘);rewrite(output);
  readln(n);
  for i:=0 to n do for j:=1 to n do if (gcd(i,j)=1)and(i/j<=1) then
  begin
    inc(tot);
    x[tot]:=i;y[tot]:=j;z[tot]:=i/j;
  end;
  qs(1,tot);
  for i:=1 to tot do writeln(x[i],‘/‘,y[i]);
  close(input);close(output);
end.

Ordered Fractions

USACO 2.1.3

题解:

列出排序后的数组,判断一下就行。

代码:

{
ID:m1599491
PROG:sort3
LANG:PASCAL
}
var nn,ans,i,j,n,t:longint;
var a,b,num:array[1..1001] of longint;
begin
  assign(input,‘sort3.in‘);reset(input);
  assign(output,‘sort3.out‘);rewrite(output);
  readln(n);
  for i:=1 to n do
  begin
    readln(a[i]);
    inc(num[a[i]]);
  end;
  for i:=1 to num[1] do b[i]:=1;
  for i:=num[1]+1 to num[1]+num[2] do b[i]:=2;
  for i:=num[1]+num[2]+1 to n do b[i]:=3;
  for i:=1 to n do for j:=1 to n do
  if (a[i]<>a[j])and(b[i]=a[j])and(b[j]=a[i]) then
  begin
    t:=a[i];a[i]:=a[j];a[j]:=t;inc(nn);
  end;
  for i:=1 to n do if a[i]<>b[i] then inc(ans);
  writeln(nn+trunc(ans/3*2));
  close(input);close(output);
end.

Sorting a Three-Valued Sequence

USACO 2.1.4

题解:

深搜,没啥好说的。

代码:

{
ID:m1599491
PROG:holstein
LANG:PASCAL
}
var sum,nee,anss,answer:array[1..100] of longint;
var a:array[1..100,1..100] of longint;
var b:array[1..100] of boolean;
var ans,i,j,n,v,g:longint;
procedure dfs(tot,dep:longint);
var p,t:boolean;
var i,j:longint;
begin
  p:=true;t:=false;
  for i:=1 to v do if sum[i]<nee[i] then p:=false;
  if p then
  begin
    if dep<=ans then
    begin
      if dep=ans then for i:=1 to dep do if answer[i]>anss[i] then
      begin
        t:=true;
        break;
      end;
      if t then for i:=1 to dep do answer[i]:=anss[i];
      if dep<ans then
      begin
        for i:=1 to dep do answer[i]:=anss[i];
        ans:=dep;
      end;
    end;exit;
  end;
  for i:=tot+1 to n do
  begin
    if not b[i] then
    begin
      dep:=dep+1;b[i]:=true;anss[dep]:=i;
      for j:=1 to v do sum[j]:=sum[j]+a[i,j];
      dfs(i,dep);anss[dep]:=0;
      for j:=1 to v do sum[j]:=sum[j]-a[i,j];
      dec(dep);b[i]:=false;
    end;
  end;
end;
begin
  assign(input,‘holstein.in‘);reset(input);
  assign(output,‘holstein.out‘);rewrite(output);
  readln(v);for i:=1 to v do read(nee[i]);readln(n);
  for i:=1 to n do for j:=1 to v do read(a[i,j]);
  for i:=1 to 1000 do answer[i]:=maxlongint;
  ans:=maxlongint;dfs(0,0);
  write(ans);for i:=1 to ans do write(‘ ‘,answer[i]);writeln;
  close(input);close(output);
end.

Healthy Holsteins

USACO 2.1.5

题解:

首先看它二进制编码的位数,则转为十进制最多只有2^b-1个数,接着用一个数组把这些二进制编码储存起来(记得补0),然后上深搜。

代码:

{
ID:m1599491
PROG:hamming
LANG:PASCAL
}
var n,b,d,i,k,tot:longint;
var s:array[0..1000] of ansistring;
var ans:array[0..1000] of longint;
var e:array[0..1000] of boolean;
function ch(n:longint):ansistring;
var s:ansistring;
begin
  s:=‘‘;
  repeat
    if n and 1=0 then s:=‘0‘+s else s:=‘1‘+s;
    n:=n>>1;
  until n=0;
  while length(s)<b do s:=‘0‘+s;
  exit(s);
end;
function pow(x:longint):longint;
begin
  if x=0 then exit(1);
  pow:=pow(x>>1);
  pow:=pow*pow;
  if x and 1=1 then pow:=pow*2;
end;
function ok(s1,s2:ansistring):boolean;
var sum,i:longint;
begin
  sum:=0;
  for i:=1 to b do
  begin
    if s1[i]<>s2[i] then inc(sum);
    if sum>=d then exit(true);
  end;
  exit(false);
end;
function okk(t:longint):boolean;
var i:longint;
begin
  for i:=1 to tot do if not ok(s[t],s[ans[i]]) then exit(false);
  exit(true);
end;
procedure o;
var i:longint;
begin
  for i:=1 to tot do if (i mod 10=0)or(i=tot) then writeln(ans[i]) else write(ans[i],‘ ‘);
  close(input);close(output);
  halt;
end;
procedure dfs(x,dep:longint);
var i:longint;
begin
  if dep>=n then
  begin
    if dep=n then o;
    exit;
  end;
  for i:=x+1 to k do
  begin
    if (not e[i])and(okk(i)) then
    begin
      e[i]:=true;
      inc(tot);ans[tot]:=i;
      dfs(i,dep+1);
      ans[tot]:=0;dec(tot);
      e[i]:=false;
    end;
  end;
end;
begin
  assign(input,‘hamming.in‘);reset(input);
  assign(output,‘hamming.out‘);rewrite(output);
  readln(n,b,d);
  k:=pow(b)-1;
  for i:=0 to k do s[i]:=ch(i);
  dfs(-1,0);
end.

Hamming Codes

时间: 2024-11-05 10:19:37

USACO 2.1的相关文章

COGS 696. [IOI1996][USACO 2.3] 最长前缀

★   输入文件:prefix.in   输出文件:prefix.out   简单对比时间限制:1 s   内存限制:128 MB 描述 USACO 2.3.1 IOI96 在生物学中,一些生物的结构是用包含其要素的大写字母序列来表示的.生物学家对于把长的序列分解成较短的序列(即元素)很感兴趣. 如果一个集合 P 中的元素可以通过串联(元素可以重复使用,相当于 Pascal 中的 “+” 运算符)组成一个序列 S ,那么我们认为序列 S 可以分解为 P 中的元素.元素不一定要全部出现(如下例中B

USACO prefix TrieTree + DP

/* ID:kevin_s1 PROG:prefix LANG:C++ */ #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <vector> #include <map> #include <set> #include <algorithm> #include <cstdlib>

【USACO 1.3.4】牛式

[題目描述 ] 下面是一个乘法竖式,如果用我们给定的那n个数字来取代*,可以使式子成立的话,我们就叫这个式子牛式. * * * x * * ---------- * * * * * * ---------- * * * * 数字只能取代*,当然第一位不能为0,况且给定的数字里不包括0. 注意一下在美国的学校中教的"部分乘积",第一部分乘积是第二个数的个位和第一个数的积,第二部分乘积是第二个数的十位和第一个数的乘积. 写一个程序找出所有的牛式. [格式] INPUT FORMAT: (f

USACO Chapter 1 Section 1.1

USACO的题解和翻译已经很多了... 我只是把自己刷的代码保存一下. 1.PROB Your Ride Is Here 1 /* 2 ID:xiekeyi1 3 PROG:ride 4 LANG:C++ 5 */ 6 7 #include<bits/stdc++.h> 8 using namespace std ; 9 10 int main() 11 { 12 freopen("ride.in","r",stdin); 13 freopen(&quo

USACO Your Ride Is Here

[USACO]Your Ride Is Here It is a well-known fact that behind every good comet is a UFO. These UFOs often come to collect loyal supporters from here on Earth. Unfortunately, they only have room to pick up one group of followers on each trip. They do,

usaco月赛,2017.1总结

T1:跳舞的奶牛 大致题意:一个体积为k的舞台能够同时容纳k只奶牛一起跳舞,他们每头奶牛的跳舞时间不同,如果有一只奶牛跳完了第k+1头奶牛就会立刻上场跳舞,当所有奶牛跳完舞以后我们认为这次表演结束.现在给出奶牛个数,最多用时,每头奶牛的跳舞时间.求舞台最小为多大. 思路:本来写了个程序以为这道题很简单,刚开始排一下序然后就行了,结果交了以后发现只过了五组,然后才发现这道题不能改变顺序(所以说为什么我改变顺序了还是能过五组,usaco的数据也好水......),所以说我想到了堆,然后就用堆写了一下

插入排序的优化【不靠谱地讲可以优化到O(nlogn)】 USACO 丑数

首先我们先介绍一下普通的插排,就是我们现在一般写的那种,效率是O(n^2)的. 普通的插排基于的思想就是找位置,然后插入进去,其他在它后面的元素全部后移,下面是普通插排的代码: 1 #include<iostream> 2 #include<fstream> 3 #include<stdio.h> 4 using namespace std; 5 int a[200000]; 6 int p[200000]; 7 8 int main(){ 9 ios::sync_wi

【日常学习】【最短路Dijkstra】codevs1069 usaco回家 题解

来源 usaco codevs1069 题目描述 Description 现在是晚餐时间,而母牛们在外面分散的牧场中. 农民约翰按响了电铃,所以她们开始向谷仓走去. 你的工作是要指出哪只母牛会最先到达谷仓(在给出的测试数据中,总会有且只有一只最快的母牛). 在挤奶的时候(晚餐前),每只母牛都在她自己的牧场上,一些牧场上可能没有母牛. 每个牧场由一条条道路和一个或多个牧场连接(可能包括自己). 有时,两个牧场(可能是字母相同的)之间会有超过一条道路相连. 至少有一个牧场和谷仓之间有道路连接. 因此

USACO 1.3 Mixing Milk(贪心)

USACO Mixing Milk 简单的贪心,读入数据,按单价从小到大排序,然后从最便宜的买起,直到买够为止. /* ID:twd30651 PROG:milk LANG:C++ */ #include<iostream> #include<fstream> #include<stdlib.h> using namespace std; int N; int M; typedef struct node { int P; int A; }node; node data

USACO agrinet Prim

裸最短生成树 /* ID:kevin_s1 PROG:agrinet LANG:C++ */ #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <vector> #include <map> #include <set> #include <algorithm> #include <cst